Python安装包的多种方式

1.pip

1.1利用网络安装

pip install 库名

这种方法不好:

第一、包之间的兼容性不会全面考虑,可能安装后,会产生冲突。

解决方法:conda install

第二、有时候下载速度慢

解决方法 pip install 库名 -i 其他镜像网站:
华为:https://repo.huaweicloud.com/repository/pypi/simple
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中科大:https://pypi.mirrors.ustc.edu.cn/simple/
如下图采用清华镜像网站:
Python安装包的多种方式_第1张图片

你可能感兴趣的:(python,开发语言)