Bootstrap

Python包安装速度太慢,两种方法解决

以安装matplotlib为例

方法一,使用pip安装光速安装matplotlib

pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

方法二,使用conda安装光速安装matplotlib

#添加国内源 
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 

​​​​​​​#安装matplotlib
conda install matplotlib

;