一、linux环境构建虚拟环境
1、安装
linux系统 安装conda
1、wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
2、sh miniconda.sh
2、创建环境
创建一个名为python34的环境,指定Python版本是3.5(不用管是3.5.x,conda会为我们自动寻找3.5.x中的最新版本)
conda create --name py35 python=3.5
3、激活环境及常见命令
安装好后,使用activate激活进入某个环境
activate py35 # for Windows
source activate py35 # for Linux & Mac
例子:
(py35) user@user-XPS-8920:~$
激活后,会发现terminal输入的地方多了py35的字样,实际上,此时系统做的事情就是把默认2.7环境从PATH中去除,再把3.4对应的命令加入PATH
(py35) user@user-XPS-8920:~$ python --version
Python 3.5.5 :: Anaconda, Inc.
可以得到Python 3.5.5 :: Anaconda, Inc.
,即系统已经切换到了3.5的环境
4、其它常用命令
conda info -e #查看所有虚拟环境
source activate snowflakes //切换虚拟环境 linux环境
activate snowflakes //切换虚拟环境 win环境
conda remove --name py35 --all # 删除一个已有的环境
conda install xxx //安装xxx包
conda install pyspark=2.3.0 安装指定版本的包
conda list # 查看已经安装的库
conda list -n py35 # 查看某个指定环境的已安装包
conda uninstall xxx //卸载xxx包
pip uninstall xxx //要是conda命令失败可以用pip
conda install -n py35 numpy # 安装package到指定的环境
conda update -n py35 numpy # 更新package
conda remove -n py35 numpy # 删除package
conda update python # 更新python
5、设置国内镜像
因为http://Anaconda.org的服务器在国外,所有有些库下载缓慢,可以使用清华Anaconda镜像源。 网站地址: 清华大学开源软件镜像站
Anaconda
镜像 Anaconda 安装包可以到 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载。 TUNA还提供了Anaconda仓库的镜像,运行以下命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
即可添加 Anaconda Python 免费仓库。