所以我在这方面遇到了一些麻烦。我需要使用 numpy 以便我可以使用 OpenCV,所以我安装了 Miniconda(不是 Miniconda3,因为我们使用的是 Python 2.7)并且我安装了 numpyconda install numpy
并且它有效,因为当我运行时conda list
我看到它在那里:
Microsoft Windows [Version 10.0.10240]
(c) 2015 Microsoft Corporation. All rights reserved.
C:\Users\joe30_000>conda list
# packages in environment at C:\Users\joe30_000\Miniconda:
#
conda 3.17.0 py27_0
conda-env 2.4.2 py27_0
menuinst 1.0.4 py27_0
numpy 1.9.3 py27_0
pip 7.1.2 py27_0
pycosat 0.6.1 py27_0
pycrypto 2.6.1 py27_3
python 2.7.10 0
pyyaml 3.11 py27_2
requests 2.7.0 py27_0
setuptools 18.3.2 py27_0
wheel 0.26.0 py27_1
C:\Users\joe30_000>
如您所见,它是为 Python 2.7 安装的。但是,当我转到 python 命令行并尝试时,import numpy
我收到不存在模块的错误:
Python 2.7.10 (default, May 23 2015, 09:40:32) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named numpy
>>>
为什么会这样?我是否必须以某种方式将 Conda 与 Python 同步,以便 Python 使用 Miniconda 安装的模块?