安装 miniconda
清华镜像地址:https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
安装 PyCharm
社区版安装: http://www.jetbrains.com/pycharm/download/#section=windows
下载提速
给 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
新建 python3.6 虚拟环境(因为我发现 py3.7 下安装的 numpy 用不了?!)
conda create -n py36 python=3.6
查看所有虚拟环境
conda env list
激活虚拟环境,安装 numpy, matplotlib
activate py36
conda install numpy
conda install matplotlib
使用 pip 加参数 -i
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
下载速度飞快!