pip安装第三方库与设置

pip的使用

假如下载numpy

shell 复制代码
pip install numpy

pypi 镜像源「配置」

常用镜像源列表

text 复制代码
官方:https://pypi.org/simple
百度:https://mirror.baidu.com/pypi/simple/
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里:https://mirrors.aliyun.com/pypi/simple/
豆瓣:https://pypi.douban.com/simple/
中科大:https://pypi.mirrors.ustc.edu.cn/simple/

1、临时使用

bash 复制代码
pip install xxxxx -i https://mirror.baidu.com/pypi/simple/ 

2、长期设置

text 复制代码
pip config set global.index-url https://mirror.baidu.com/pypi/simple/

注:升级 pip 到最新的版本 (>=10.0.0) 后进行配置,详见

3、配置多个镜像源(负载均衡)

text 复制代码
pip config set global.extra-index-url "<url1> <url2>..."

pip升级

python -m pip install --upgrade pip

手动安装pip依赖库

所有conda安装的环境路径

E:\Anaconda3-2019.10-Windows-x86_64\envs

某环境中pip安装的第三方库位置:
E:\Anaconda3-2019.10-Windows-x86_64\envs\tensorflow-gpu\Lib\site-packages

bug

解决Win下使用.bat时conda activate python虚拟环境无效的问题

直接使用<虚拟坏境路径>/python.exe main.py

bug:sklearn通过pip下载后无法导入的情况

description:

When execute code:
import sklearn

Exception output:

from .qhnll import *

ImportError: DLL load failed:找不到指定的模块。
solution:

shell 复制代码
pip install mkl
pip install --user --ignore-installed scikit-learn
相关推荐
Kiros_Jiang13 小时前
开源低代码平台-Microi吾码 打印引擎使用
javascript·开源·json·.net·pip
西格玛懒大王3 天前
[python] 基于matplotlib实现雷达图的绘制
数据库·python·pycharm·pip
TenniCC4 天前
python 中使用pip操作flask离线下载(包含依赖包下载)和安装
python·flask·pip
尚雷55808 天前
pip 如何快速安装包
人工智能·pip
心死翼未伤11 天前
python数据分析之爬虫基础:requests详解
开发语言·爬虫·python·http·数据挖掘·数据分析·pip
zhangfeng113316 天前
pip install torch -t /home/aistudio/external-libraries 我怎么查询安装在特殊目录下面的torch都版本
pytorch·python·pip
丶213616 天前
【Python】Python虚拟环境与依赖管理全指南
开发语言·python·pip
Bubble_water17 天前
解决Conda虚拟环境中pip下载包总是到base环境的问题
conda·pip
暮暮七18 天前
Dashboard-Factory没图没真相的虚假BI
python·信息可视化·大模型·pip·幻觉
007不打工人18 天前
mac miniforge3替代miniconda3,pip使用出错pip: bad inteno such file or directory
macos·pip