当前位置:   article > 正文

python依赖包安装 pip换源_python安装换源

python安装换源

1 常用源

# 腾讯
http://mirrors.tencentyun.com/pypi/simple
# 阿里
https://mirrors.aliyun.com/pypi/simple
# 豆瓣
https://pypi.douban.com/simple
# 中科大
https://pypi.mirrors.ustc.edu.cn/simple/
# 清华
https://pypi.tuna.tsinghua.edu.cn/simple
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

2 单条命令换源安装

pip后面跟python版本号,如果只安装一个python解释器,就可以不用写版本号

pip3.7 install bottle -i https://pypi.douban.com/simple
pip3.6 install requests -i https://pypi.douban.com/simple
pip install lxml -i https://pypi.douban.com/simple
pip install bs4 -i https://pypi.douban.com/simple
pip install tornado -i https://pypi.douban.com/simple
pip install twisted -i https://pypi.douban.com/simple
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

带版本号

pip install tensorflow==1.15.0 -i https://mirrors.aliyun.com/pypi/simple
  • 1

3 写配置文件 永久修改

3.1 linux

vim ~/.pip/pip.conf (没有就创建一个)
  • 1
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
  • 1
  • 2

3.2 windows

创建文件
C:\Users\Administrator\pip.ini

[global] 
timeout = 6000 
index-url = http://pypi.douban.com/simple 
trusted-host = pypi.douban.com
  • 1
  • 2
  • 3
  • 4

4 导出项目依赖

pip freeze >requirements.txt
  • 1

5 包存储路径

linux: ./Python-3.8.5/lib/python3.8/site-packages
windows: C:\Users\Administrator\AppData\Local\Programs\Python\Python38\Lib\site-packages

6 whl安装

下载
https://www.lfd.uci.edu/~gohlke/pythonlibs

7 常用依赖

通用

requests
bs4
lxml
furl
selenium

Flask
Flask-Migrate
Flask-Script
Flask-SQLAlchemy
Jinja2
PyJWT
PyYAML

PyMySQL
mysql-connector
SQLAlchemy
redis

hdfs
PyHive
spark
pyspark
thrift
thrift-sasl
elasticsearch

paramiko
numpy
Pillow
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

异步

aiofiles==0.8.0
aiohttp==3.8.3
aiomysql==0.1.1
aiosignal==1.2.0
sanic
Sanic-Cors
sanic-ext
sanic-jwt
sanic-routing
sanic-session
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

python3.7.1_64

PyMySQL==1.0.2
mysql-connector==2.2.9
hdfs==2.7.0
PyHive==0.6.5
thrift==0.16.0
thrift-sasl==0.4.3
sasl
paramiko==3.0.0
redis==4.5.1
requests==2.28.2
bs4==0.0.1
lxml==4.9.2
Jinja2==3.1.2
furl==2.1.3
Flask==2.2.3
flask-cors==3.0.10
Flask-Migrate
Flask-Script
Flask-SQLAlchemy
Jinja2
PyJWT
PyYAML
SQLAlchemy
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

作者地址:
https://www.couragesteak.com/article/67

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/473743
推荐阅读
相关标签
  

闽ICP备14008679号