zoukankan      html  css  js  c++  java
  • win10更改pip源

    摘自:https://blog.csdn.net/qq_31443999/article/details/88750833



    win10安装TensorFlow卡崩
    更改为国内清华大学镜像源,即可。

    具体做法
    在c:user(或者用户)电脑的用户名,目录下创建一个命名为“pip”的文件夹(如:C:UsersAdministratorpip),在该文件夹下创建一个命名为“pip.ini”的文件,在该文件中写入以下内容:

    [global]
    index-url=https://pypi.tuna.tsinghua.edu.cn/simple 
    [install] 
    trusted-host=pypi.tuna.tsinghua.edu.cn
    disable-pip-version-check = true 
    timeout = 6000 
    

      若是想在安装package的时候再设置源,可以以这种方式来进行:

    pip install package_name -i https://pypi.tuna.tsinghua.edu.cn/simple
    

      

    解决Python 下载包慢的问题
    
    本文链接:https://blog.csdn.net/du_lun/article/details/89945694
    
    阿里云 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/
    
    
    pip install tensorflow -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
    

      

  • 相关阅读:
    UVA 11995
    LA 5031
    防卫导弹
    跳马问题
    UVA 11992
    POJ 3264 Balanced Lineup
    0-1背包
    石子合并
    小技巧
    Android广播中有序和无序的区别
  • 原文地址:https://www.cnblogs.com/LiuYanYGZ/p/12051521.html
Copyright © 2011-2022 走看看