这个文档主要记录我(Python新手)在使用Python过程中遇到的问题及我的解决方法。
(持续更新……)
Python装模块
我想在电脑终端使用使用pip install
安装模块,显示无法使用pip
,但是我检查了我的python和pip都已经加在了环境变量里了,不清楚为什么还是不能直接使用pip install
直接安装模块。
最后,我使用python -m pip install -i http://mirrors.aliyun.com/pypi/simple/ [库名] --trusted-host mirrors.aliyun.com
因为原来的地址下载很慢,所以我用的是阿里云的镜像。也可以使用其他的国内镜像。比如:
阿里云 :http://mirrors.aliyun.com/pypi/simple/
中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣: http://pypi.douban.com/simple/
清华大学: https://pypi.tuna.tsinghua.edu.cn/simple/
中国科学技术大学: http://pypi.mirrors.ustc.edu.cn/simple/
网友评论