python第三方库安装

python第三方库安装

    • 镜像源网址
    • 使用镜像地址安装python第三方库
    • 使用whl安装python第三方库
    • 使用压缩包安装第三方库

镜像源网址

  1. 清华:https://pypi.tuna.tsinghua.edu.cn/simple
  2. 阿里云:http://mirrors.aliyun.com/pypi/simple/
  3. 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
  4. https://www.lfd.uci.edu/~gohlke/pythonlibs/

使用镜像地址安装python第三方库

# 以urllib3安装为例
pip install urllib3 -i https://pypi.tuna.tsinghua.edu.cn/simple
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple urllibs

使用whl安装python第三方库

# 以numpy安装为例
pip install J:\downloads\numpy-1.19.3-cp39-cp39-win_amd64.whl #pip install + whl文件路径

使用压缩包安装第三方库

# 以pip安装为例
# 首先解压压缩包
#进入setup.py所在目录
cd J:\downloads\pip-22.2.2\pip-22.2.2
# 如果cd无法进入目录,则
cd /d J:\downloads\pip-22.2.2\pip-22.2.2
# 安装第三方库
python.exe setup.py install

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