Python修改pip源加速软件下载

Python修改pip源加速软件下载

Windows修改方法

【Win+R】输入cmd打开命令行窗口,然后输入以下命令:

# 打开文件夹  C:\Users\OdinXu\AppData\Roaming
cd %APPDATA%

# 创建pip文件夹
mkdir "pip"

# 打开pip文件夹
cd pip

# 新建pip.ini文件
echo. > pip.ini

# 编辑pip.ini文件,会自动调用记事本打开 pip.ini 文件
notepad pip.ini

#在文件里添加以下内容,保存退出。
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com


BTW: 自带的cmd非常不好,OdinXu推荐大家使用 cmder,被称之为Windows上的程序员神器。

Linux修改方法

mkdir ~/.pip

cat >> ~/.pip/pip.conf<<EOF
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com

EOF

安装常用软件包

pip3 install jieba

pip3 install matplotlib mysql-connector numpy pillow pandas requests redis scrapy selenium  beautifulsoup4  pymysql  pyinstaller python-docx  openpyxl  

pip3 install wordcloud 

其它的加速源

哪一个更快,可以自己测试一下,尽量使用https方式:

阿里云 https://mirrors.aliyun.com/pypi/simple/

网易云 https://mirrors.163.com/pypi/simple/

豆瓣(douban) https://pypi.doubanio.com/simple/

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/

中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/

中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/

Python2代码转Go代码

https://codingpy.com/article/grumpy-boosts-python-with-go/

谷歌发布了一个 Python 性能加速方案 —— Grumpy,可以将 Python 代码转译(transcompile)为 Go 源代码。而 Go 代码是可以编译为本地机器码,性能最强。

项目地址:https://github.com/google/grumpy

注:这个项目,只能转换 Python 2代码,并且已经很久没人维护过了,最后一次提交是2017年底(感觉没有什么卵用)。