Anaconda
Anaconda 下载地址:
清华源:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
官网:https://www.anaconda.com/download/
下载对应的系统版本
Windows直接运行安装,选中添加到路径中,一直next即可。
ubuntu切换到下载目录运行以下命令,按照提示输入yes即可。
bash ./Anaconda3-5.0.0-Linux-x86_64.sh
Anaconda的相关命令
添加清华源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
添加中科大源
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.ustc.edu.cn/anaconda/cloud/menpo/
conda config --set show_channel_urls yes
添加/删除环境
//添加环境
conda create -n tf python=3.5
//删除环境
conda remove -n tf
//激活/跳转到环境
//Windows
activate tf
//ubuntu
source activate tf
使用conda、pip安装库
//conda
conda install numpy
conda remove numpy
//pip
pip install numpy
//出现CondaHTTPError: 错误输入以下命令***删除defaults行***
vim ~/.condarc
//出现Traceback (most recent call last):
//没有权限情况使用如下命令,其中“anaconda3”为安装的文件夹名称
sudo chmod -R 777 anaconda3
PyCharm
下载地址:
官网:https://www.jetbrains.com/pycharm/download/
使用以下命令安装
tar -zxfv pycharm-professional-2017.1.2.tar.gz
cd pycharm-professional-2017.1.2
./bin/pycharm.sh
PyCharm配置到Anaconda的解释器
在PyCharm中选中
File=>Settings=>Project Interpreter=>add=>Conda Environment=>Existing environment=>Interpreter
选择对应的python解释器即可
路径anaconda/bin/python
anaconda/env/tf/bin/python3