快速安装Python常用库

快速安装Python的各种库

Python在下载第三方库时速度太慢,缘由是Python中的资源来自于国外,这里给出国内的镜像下载源。包含图像处理和机器学习常用的库。

pip install numpy matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install pandas scipy scikit-learn scikit-image -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install opencv-python -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install jupyter -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install jupyterlab -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

镜像源来自于豆瓣,直接在cmd复制如上指令即可快速安装。
在这里插入图片描述
验证是否安装成功只需要在Python下执行代码验证未出错即可。

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