【pip安装第三方库】

1、pip安装python包出错:Could not find a version that satisfies the requirement skimage (from versions: )
这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源。命令改为:
pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
或者
pip3 install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

2、安装第三方库
osqp
numpy
scipy
matplotlib
命令:
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install osqp -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install scipy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

你可能感兴趣的:(python,python,pycharm)