gpt4 book ai didi

python-2.7 - 是否可以将 python 2.7 与 julia 一起使用,而 anaconda 预装了 python 3.4?

转载 作者:太空宇宙 更新时间:2023-11-03 21:19:16 24 4
gpt4 key购买 nike

我安装了 julia,并使用 PyCall 在 julia 中使用了一些不错的 python 包,比如 matplotlib。我已经用 anaconda 安装了所有 python 东西并使用了 python 3.4。我可以从 anaconda 中的环境切换到使用 python 2.7。

问题是我想在 julia 中将 openCV 作为 python 包导入,但它只能与 python 2.7 一起运行。所以我想知道是否可以在 julia trough anaconda 中使用 python 2.7,而 python 3.4 在 anaconda 的主要安装中。

一个可行的选择是重新安装版本为 2.7 的 anaconda,但我不希望这样。

提前致谢,弗兰克

最佳答案

当前的 Anaconda 安装

Python3 上的 OpenCV3

The thing is that I would like to import openCV as a python package in julia but it only runs with python 2.7.

您是否尝试过在安装 Anaconda Python 3.x 版时安装 OpenCV3?

再添加一个Python 2.7环境

您还可以使用当前安装的 Anaconda 使用 conda create 安装 Python 2.7 创建新的 Anaconda Python 环境:

conda create -n py27 python=2.7 anaconda

假设您使用的是完整的 Anaconda 发行版,我知道这将安装一个完整 Anaconda Python 2.7 环境(参见下面的 miniconda),但它不会搞砸你之前的 Anaconda Python 3 环境。

Conda.jl Julia 包

你可以使用 Conda.jl用于管理 Julia 二进制依赖项:

This package allows one to use conda as a binary provider for Julia. While other binary providers like Hombrew.jl, AptGet.jl or WinRPM.jl are platform-specific, Conda.jl is a cross-platform alternative. It can also be used without administrator rights, in contrast to the current Linux-based providers.

conda is a package manager which started as the binary package manager for the Anaconda Python distribution, but it also provides arbitrary packages. Instead of the full Anaconda distribution, Conda.jl uses the miniconda Python environment, which only includes conda and its dependencies.

You can install it by running Pkg.add("Conda") at the Julia prompt.

安装并加载Conda.jl:

julia> # Pkg.add("Conda")

julia> using Conda

搜索包:

julia> Conda.search("opencv")
1-element Array{AbstractString,1}:
"opencv"

安装包:

julia> Conda.add("opencv")
Fetching package metadata: ....
Solving package specifications: ....................
Package plan for installation in environment /home/ismaelvc/.julia/v0.4/Conda/deps/usr:

The following packages will be downloaded:

package | build
---------------------------|-----------------
jpeg-8d | 0 699 KB
wheel-0.29.0 | py27_0 81 KB
opencv-2.4.10 | np110py27_1 9.2 MB
------------------------------------------------------------
Total: 10.0 MB

The following NEW packages will be INSTALLED:

jpeg: 8d-0
opencv: 2.4.10-np110py27_1

The following packages will be UPDATED:

wheel: 0.26.0-py27_1 --> 0.29.0-py27_0

Fetching packages ...
jpeg-8d-0.tar. 100% |##########| Time: 0:00:01 652.02 kB/s
wheel-0.29.0-p 100% |##########| Time: 0:00:00 336.94 kB/s
opencv-2.4.10- 100% |##########| Time: 0:00:10 962.48 kB/s
Extracting packages ...
[ COMPLETE ]|##########| 100%
Unlinking packages ...
[ COMPLETE ]|##########| 100%
Linking packages ...
[ COMPLETE ]|##########| 100%

Total: 10.0 MB

检查它是否有效:

shell> .julia/v0.4/Conda/deps/usr/bin/python
Python 2.7.11 |Continuum Analytics, Inc.| (default, Dec 6 2015, 18:08:32)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
Anaconda is brought to you by Continuum Analytics.
Please check out: http://continuum.io/thanks and https://anaconda.org
>>> import cv2
>>> cv2.__version__
'2.4.10'
>>>

在 Julia 中通过 PyCall:

julia> using PyCall    # Pkg.add("PyCall")

julia> @pyimport cv2

julia> @pyimport sys

julia> sys.version |> println
2.7.11 |Continuum Analytics, Inc.| (default, Dec 6 2015, 18:08:32)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]

julia> import Conda

julia> Conda.PYTHONDIR
"/home/ismaelvc/.julia/v0.4/Conda/deps/usr/bin"

指定PyCall的python版本

miniconda

或者直接使用miniconda for Python 2.7:

Conda.jl 默认安装 Python 版本 2.7.x miniconda(安装所有内容在 ~/.julia/v0.x/Conda).

在 Linux 中:

通常很容易只安装你想要的东西,而不必使用 Anaconda(我假设你使用 Mac 或 PC,但对其他人仍然有用),示例使用 ArchLinux 包管理器 pacman,它类似于其他 Linux 发行版包管理器,如:yumzipperapt-get 等:

shell> sudo pacman -S opencv
warning: opencv-2.4.12.2-2 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...

Package (1) Old Version New Version Net Change Download Size

extra/opencv 2.4.12.2-2 2.4.12.2-2 0.00 MiB 7.10 MiB

Total Download Size: 7.10 MiB
Total Installed Size: 38.86 MiB
Net Upgrade Size: 0.00 MiB

:: Proceed with installation? [Y/n] n

shell> python2
Python 2.7.11 (default, Dec 6 2015, 15:43:46)
[GCC 5.2.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import cv2
>>> cv2.__version__
'2.4.12.2'
>>>

关于python-2.7 - 是否可以将 python 2.7 与 julia 一起使用,而 anaconda 预装了 python 3.4?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35288386/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com