windows10 64位 深度学习环境搭建
1.下载安装miniconda3
https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
2.更换miniconda3的源,以清华的源为例:
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
3.conda 常用指令
# 查看已创建的环境
conda env list
#创建虚拟环境
conda create -n name python=3.7
#激活虚拟环境
conda activate name
#退出虚拟环境
conda deactivate
#删除虚拟环境
conda remove -n name --all
4.需要安装的工具包
数据处理类:numpy scipy pandas
数据可视化类:matplotlib seaborn
传统视觉类:OpenCV pillow
深度视觉类:TensorFlow 2.1
编辑器: jupyter notebook
插件:nbextension autopep8
一条指令安装所有包:
pip install numpy scipy pandas matplotlib pillow jupyter notebook opencv-python==3.4.2.17 opencv-contrib-python==3.4.2.17 tensorflow==2.1.0 jupyter_contrib_nbextensions autopep8 -i
"https://pypi.doubanio.com/simple"
5. Jupyter Notebook :
常用扩展
Hinterland 代码提示
Autopep8 代码规范
Nbextensions常用扩展及标签不显示解决:
python -m pip install jupyter_contrib_nbextensions
jupyter contrib nbextension install --user --skip-running-check