使用cmd进行环境安装全流程

win环境安装及库配置

win+r 打开运行对话框
输入:
1、conda create -n tf python=3.6 //tf 是环境名
2、activate tf //进入环境

库配置(python深度学习为例)

3、pip install tensorflow==2.0.0 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com //tensorflow==2.0.0是需安装的库,-i后的内容是pip源
4、python -m pip install --upgrade pip
5、pip install numpy==1.16.0 //版本根据自己需要来安装
6、pip install pandas==1.0.5
7、pip install interval
8、pip install keras
9、pip install sklearn
10、pip install matplotlib
11、pip install opencv-python
12、pip install Keras ==2.2.4

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

逐行输入可直接使用

你可能感兴趣的:(python)