我已经安装miniconda3
在了Ubuntu 14.04
。当我输入 which python 时,它显示:
Python 3.6.1 |Continuum Analytics, Inc.| (default, May 11 2017, 13:09:58)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.`enter
Miniconda3 会自动在路径中安装 numpy,但不会安装 scipy。因此我查看了手册,找到了这个命令:
conda create --name scipy python
以及激活它的方法。
但是当我使用终端导入 scipy 时,它没有这样做。
你能帮我解决这个问题吗?
答案1
使用 conda安装的正确方法scipy
是:
conda install scipy
安装软件包
如何安装特定包,例如 SciPy?
conda install scipy
如何安装特定版本的软件包,例如 SciPy?
conda install scipy=0.15.0
如何一次安装多个包(例如 SciPy 和 cURL)?
conda install scipy curl