我正确安装了 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
我该如何解决这个问题?
答案1
在 conda 中,该包就称为numpy
。您的 conda 环境中应该已经包含 Python 3。如果没有,您可以使用 创建一个新环境,然后conda create -n py3 python=3 numpy
使用 激活它source activate py3
。