速记
1. 安装
Miniconda 是Conda最精简的版本,为了避免引入大量不必要的库,这里我们使用Miniconda进行安装。关于Miniconda介绍如下:
Miniconda installers contain the conda package manager and Python.
Once Miniconda is installed, you can use the conda command to install any other packages and create environments.
可以看出,一旦我们安装了Miniconda ,我们就可以为所欲为了。
Miniconda 官方下载地址请点击这里:Miniconda 官方下载地址,下载之后一路绿灯安装即可。
如下,官方提供了两个版本的Installer,我们任选其一安装即可。
安装好后,如果想安装多版本Python,继续安装另一版本即可(下面详细介绍)。关于两版本安装先后的区别如下:
The other difference is that the Python 3 version of Miniconda will default to Python 3 when creating new environments and building packages.
这里采用首先安装好Pyhon3后举例说明如何安装Python2版本,Cmd 操作如下:
# 安装 python 2.7
$ conda create -n python2 python=2.7
# 切换至 python 2.7
$ activate python2
# 退出 python 2.7
$ deactivate
# 安装第三方包
$ conda install xxxx
默认环境为 python 3.7 ,Conda 其他常用操作命令请自行百度。
2. 关于目录结构简单介绍
比如我的miniconda安装目录在D:\software\miniconda。则:
python3.7 的可执行文件位置为:D:\software\miniconda\python.exe
python2.7 的可执行文件位置为:D:\software\miniconda\envs\python2\python.exe
构建项目时可通过切换可执行文件切换python环境。
通过conda下载的第三方包位置为:
python3.7 :D:\software\miniconda\Lib\site-packages
python2.7 :D:\software\miniconda\envs\python2\Lib\site-packages
是不是很简单?
网友评论