This is an old revision of the document!
人生苦短,我用Python ` # 新手入门 # Python爬虫 [Python爬虫的工具列表](http://python.jobbole.com/82633/) # Python Web # Python与深度学习 # Python编码规范 参考[Google Style Guide -- Python](https://google.github.io/styleguide/pyguide.html) # pip使用国内源提升下载速度 参考[ 更改pip源至国内镜像,显著提升下载速度](https://blog.csdn.net/lambert310/article/details/52412059) linux下,修改 ~/.pip/pip.conf (没有就创建一个), 修改 index-url至tuna,内容如下: ``` [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple ``` windows下,直接在user目录中创建一个pip目录,如:C:\Users\xx\pip,新建文件pip.ini,内容如下 ``` [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple ```