美文网首页
Python问题解决

Python问题解决

作者: 漂流大海的号 | 来源:发表于2019-07-18 12:07 被阅读0次

    这个文档主要记录我(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/

    相关文章

      网友评论

          本文标题:Python问题解决

          本文链接:https://www.haomeiwen.com/subject/amoklctx.html