Python包安装速度太慢,两种方法解决
Posted qq_21478261
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于Python包安装速度太慢,两种方法解决的主要内容,如果未能解决你的问题,请参考以下文章