终端查看python版本:python --version
用Anaconda创建虚拟环境:conda create -n chineseocr python=3.6 pip scipy numpy jupyter ipython ##运用conda 创建python环境
激活虚拟环境:source activate env_name (例如source activate chineseocr)
关闭虚拟环境:source deactivate env_name (例如source deactivate chineseocr)
pip安装依赖包: pip install pkg_name -i https://pypi.tuna.tsinghua.edu.cn/simple/ ## 连接至清华镜像
conda虚拟环境中安装pytorch, torchvison:conda install pytorch==1.5.1 torchvision==0.6.1 cudatoolkit=10.1 -c pytorch # -c pytorch意思是指定官网安装?
## pytorch, torchvison和cudatoolkit的版本对应关系请查看:https://pytorch.org/get-started/previous-versions/