Anaconda搭建深度学习框架,OpenCV,TensorFlow,pytorch,CPU版本

系统环境win7+python3.5

1,安装Anaconda3-4.2.0-Windows-x86_64.exe

百度云地址:链接:https://pan.baidu.com/s/1zO1UBvE5X-b8C1J5_aQLog 密码:65m3


2,使用管理员身份打开,Anaconda Prompt

conda update anaconda-navigator
anaconda-navigator --reset
conda update anaconda-client
conda update -f anaconda-client


3,配置conda源

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


4,安装软件,OpenCV

pip install --upgrade setuptools
pip install numpy Matplotlib
pip install opencv-python


5,安装TensorFlow

pip install tensorflow
pip install gym
pip install pygame


6,安装pytorch

   py3.5+CPU

pip install http://download.pytorch.org/whl/cpu/torch-0.4.0-cp35-cp35m-win_amd64.whl

  py3.6+CPU

pip install http://download.pytorch.org/whl/cpu/torch-0.4.0-cp36-cp36m-win_amd64.whl 

   torchvision

pip install torchvision






猜你喜欢

转载自blog.csdn.net/luolinll1212/article/details/80655049