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
    

      

  • 相关阅读:
    COGS 859. 数列
    9.7noip模拟试题
    hash练习
    9.6noip模拟试题
    9.5noip模拟试题
    poj 2117 Electricity
    洛谷P1993 小 K 的农场(查分约束)
    9.2noip模拟试题
    洛谷 P1273 有线电视网(dp)
    面试题收集
  • 原文地址:https://www.cnblogs.com/LiuYanYGZ/p/12051521.html
Copyright © 2011-2022 走看看