如何在Anaconda中更改Python版本,安装Numpy和sklearn 0.17?

时间:2019-03-15 19:33:10

标签: python-3.x installation anaconda

enter image description here 我是机器学习的新手。我实际上不知道我在做什么,但是我需要工具来了解机器学习的工作原理。

  1. 我刚刚从here下载了Anaconda Python。我看到我下载的版本是3.7,但我需要3.5。

  2. 我不太了解如何安装Numpy 1.10和sklearn 0.17

能否请您指导我如何安装这些产品?

1 个答案:

答案 0 :(得分:1)

最好的方法是通过using a custom conda environment。您可以通过以下任一方法来完成此操作:

然后在Windows开始菜单中打开Anaconda Prompt。然后执行:

conda create -n customenvname python=3.5 numpy=1.10 scikit-learn=0.17

按照提示进行操作。

要激活新环境并开始运行,只需执行conda activate customenvname。您现在处于具有所需所有依赖项的Python 3.5环境中:

(base) C:\Users\user>conda activate customenvname

(customenvname) C:\Users\user>python --version
Python 3.5.6 :: Anaconda, Inc.
(customenvname) C:\Users\user>conda list
# packages in environment at C:\Users\user\Miniconda3\envs\customenvname:
#
# Name                    Version                   Build  Channel
blas                      1.0                         mkl
certifi                   2018.8.24                py35_1
mkl                       11.3.3                        1
numpy                     1.10.4                   py35_2
pip                       10.0.1                   py35_0
python                    3.5.6                he025d50_0
scikit-learn              0.17.1              np110py35_1
scipy                     0.17.1              np110py35_1
setuptools                40.2.0                   py35_0
vc                        14.1                 h0510ff6_4
vs2015_runtime            14.15.26706          h3a45250_0
wheel                     0.31.1                   py35_0
wincertstore              0.2              py35hfebbdb8_0

注意:mkl程序包是optimization of some of the most used scientific computing libraries maintained by anaconda