我把conda装好了。
现在,我想将Numpy与默认附带的Python-3.4.2一起使用。
下面是我运行的内容,以及我所得到的错误:
conda install python3-numpy
Fetching package metadata: ....
Error: No packages found in current linux-32 channels matching: python3-numpy
Did you mean one of these?
python-ntlm
You can search for this package on Binstar with
binstar search -t conda python3-numpy
begueradj@begueradj-HP-Compaq-6510b-KE130ET-ABF:/home$ binstar search -t conda python3-numpy
Using binstar api site https://api.binstar.org
Run 'binstar show <USER/PACKAGE>' to get more details:
No packages found
Name | Version | Package Types | Platforms
------------------------- | ------ | --------------- | ---------------
Found 0 packages我如何解决这个问题?
发布于 2015-02-23 22:41:38
在conda中,这个包被称为numpy。您的conda环境应该已经包含了Python 3。如果没有,您可以用conda create -n py3 python=3 numpy创建一个新的,然后用source activate py3激活它。
https://askubuntu.com/questions/588502
复制相似问题