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
相关推荐
hljqfl2 天前
pip安装第三方库,但PyCharm中却无法识别
ide·pycharm·pip
Monee..2 天前
linux里安装pip和conda
linux·conda·pip
豆芽8194 天前
Conda配置Python环境
python·conda·pip
MobiCetus4 天前
有关pip与conda的介绍
linux·windows·python·ubuntu·金融·conda·pip
Eiceblue5 天前
Python 在Word中查找并替换文本
vscode·python·word·pip
situnima5 天前
Python包管理完全指南:pip常用命令与最佳实践
开发语言·python·pip
Melody20505 天前
pip install cryptacular卡住,卡在downloading阶段
pip
W_chuanqi5 天前
为pip设置国内镜像源
python·pip
kcarly6 天前
python 、pip、conda、poetry的关系
python·conda·pip·poetry
伊织code8 天前
uv - 概念 [官方文档翻译]
服务器·python·pip·uv·概念·concept