zoukankan      html  css  js  c++  java
  • python pip安装包使用PyPI国内源

    python3安装的包

    用国内资源如下:
    阿里云 http://mirrors.aliyun.com/pypi/simple/

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

    豆瓣(douban) http://pypi.douban.com/simple/

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

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

    Windows安装: pip install pycryptodomex 
    pip install pycryptodomex -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    
    Linux安装: pip install pycryptodome
    pip install pycryptodome -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    
    pip install retrying -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install oss2 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install pymysql==0.9.3 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install pywin32==223 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install pywin32-ctypes==0.2.0 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install fonttools==4.2.0 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install demjson==2.2.4 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install pymongo -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install muggle_ocr -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install colorlog -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    


    以上安装包错误解决方法如下命令

    pip install PyExecJS  -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    
    redis 和 redis-py-cluster版本要对应
    
    pip install redis==2.10.6 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    pip install redis-py-cluster==1.3.6 -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    
  • 相关阅读:
    微信小程序-----校园头条详细开发之注册登录
    微信小程序-----校园头条详细开发之首页
    day 99天
    day 98天
    day 97 VUE第一天
    day 96
    day 95天
    day 94 RestFramework序列化组件与视图view
    day 93 Restframwork
    day 92
  • 原文地址:https://www.cnblogs.com/gqv2009/p/13140100.html
Copyright © 2011-2022 走看看