python pip 安装慢
由于python官方的源在国外,所以有时候安装经常断掉,速度也很慢,可以找国内的原进行安装,在运行pip
安装命令的后面增加-i https://pypi.tuna.tsinghua.edu.cn/simple
指定国内的源(比如这里的清华的源),就可以正常安装了。
python3 -m pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple
由于python官方的源在国外,所以有时候安装经常断掉,速度也很慢,可以找国内的原进行安装,在运行pip
安装命令的后面增加-i https://pypi.tuna.tsinghua.edu.cn/simple
指定国内的源(比如这里的清华的源),就可以正常安装了。
python3 -m pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple