ICode9

精准搜索请尝试: 精确搜索
  • Python国内镜像地址2022-01-20 15:31:56

    国内镜像 清华:https://pypi.tuna.tsinghua.edu.cn/simple阿里云:http://mirrors.aliyun.com/pypi/simple/中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/华中理工大学:http://pypi.hustunique.com/山东理工大学:http://pypi.sdutlinux.org/豆瓣:http://pypi.douban.com/sim

  • pip install requirements指定安装源2022-01-18 13:02:20

    安装requirements总包 pip install -i https://pypi.doubanio.com/simple/ -r requirements.txt 安装单个包 pip --default-timeout=100 install tensorflow==2.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple pip --default-timeout=100 install tensorflow==2.0.0 -

  • python装库报错解决2022-01-14 21:02:20

    python装库报错解决 输入的代码: pip install HSI -i https://pypi.douban.com/simple 报错内容: Could not fetch URL https://pypi.douban.com/simple/hsi/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.douban.com', port=443): Max

  • 更换pip源到国内镜像2022-01-13 15:01:35

    更换pip源到国内镜像 pip国内的一些镜像 # 豆瓣 https://pypi.doubanio.com/simple/ # 阿里云 https://mirrors.aliyun.com/pypi/simple/ # 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/ 临时

  • opencv安装2022-01-13 10:03:41

    清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大学:http://pypi.hustunique.com/ 山东理工大学:http://pypi.sdutlinux.org/ 豆瓣:http://pypi.douban.com/simp

  • PyCharm设置pip国内源(镜像)2022-01-13 09:04:51

    PyCharm创建新项目时很慢,停留在下载pip的状态。换成国内源(镜像)可提速。   修改默认配置: File -> New Projects Settings -> Settings for New Projects -> Pytthon Interpreter -> Python 3.x -> pip(双击) -> Manage Repositories -> + * 如果没有Python 3.x选项,点击右边的选

  • 【小文】Python-pip国内源设置-cmd命令行一键设置2022-01-12 02:00:15

    1、  2022-01-12 01:05:22 wed       众所周知,Python使用pip方法安装第三方包时,需要从 https://pypi.org/ 资源库中下载,但是会面临下载速度慢,甚至无法下载的尴尬。pip 提供了对 Python 包的查找、下载、安装、卸载的功能,是非常方便的 Python 包管理工具。但是,令人苦恼的

  • ubuntu更换安装源和pip镜像源2022-01-11 12:00:35

    ubuntu更换安装源和pip镜像源_wssywh的博客-CSDN博客_ubuntu修改pip源一、pip源配置清华pip源地址:https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣pip源地址:https://pypi.doubanio.com/simple/1. 临时使用这里以清华的镜像源为例,若要使用其他的源,改变地址就可以了。pip install

  • windows平台上更换Anaconda镜像源2022-01-10 14:07:01

    原文链接:快乐机脑 1.打开C盘,在user文件夹目录下新建一个文件夹,可以新建一个txt文件,命名为pip,打开txt文件输入以下内容: [global] index-url = https://pypi.tuna.tsinghua.edu.cn/simple/ [install] trusted-host=pypi.tuna.tsinghua.edu.cn 之后将文件另存为,选择:所有文件,将

  • pip install报错2022-01-06 13:35:20

    报错类似: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host=‘pypi.org‘,port=443) 解决方案: pip3 install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org --user uwsgi

  • python问题解决----Requirement already satisfied2022-01-05 22:29:59

    问题 pip安装request库时报错 2. 解决办法 指定安装路径 pip install --target=d:\python39\lib\site-packages requests 到达此步,我的问题解决,能够直接安装成功! 2.还是不行的话,加上镜像 pip install -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubani

  • Python项目生成requirements.txt文件及pip升级问题解决及流程2022-01-05 12:32:52

    缘由:新项目使用Python, PC上的python包不全,需要通过requirements.txt文件指定安装所需包 pip安装遇到一些坑 一、直接使用pip包管理工具生成requirements.txt 文件 1. 使用 pip freeze 生成 pip freeze > requirements.txt pip freeze > D:\xxx\requirements.txt > 后面可以

  • 更换Python默认软件镜像源2022-01-01 19:34:26

    pip国内的一些镜像 阿里云 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

  • sklearn下载方法,如果pycharm下载失败的话,你可以看看这里2022-01-01 13:33:51

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 一、sklearn下载方法是什么? 一、sklearn下载方法是什么? 示例:pandas 是基于NumPy 的一种工具,该工具是为了解决数据分析任务而创建的。 **注意:**直接在终端运行就可以了 pip install scikit-learn -

  • 【Pyqt5】QT designer与 pycharm的配置2021-12-31 13:36:58

    1:下载pip install PyQt5 -i https://pypi.douban.com/simple pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyQt5-tools 2:汉化包放入qt的安装目录 链接:https://pan.baidu.com/s/1V8Rw-QET-Lp-8Ka6m6qx3A 提取码:t4cs --来自百度网盘超级会员V5的分享 3. 配置 Q

  • 安装第三方包2021-12-28 20:02:36

    unicode转中文 a=\\u51b0\\u4e1d\\u77ed\\u88e4\\u75375\\u4e94\\u5206\\u88e4 **加粗样式** b=a.encode('utf-8').decode('unicode_escape') print(b) 2020夏季男士短裤韩版潮牌宽松港风工装五分休闲裤子 python 项目自动生成requirements.txt文件 pip freeze > requ

  • python模块下载缓慢解决办法2021-12-27 11:59:21

    python模块下载缓慢解决办法 由于python中pip模块默认使用的是国外的镜像源,所以下载速度十分缓慢. ps:什么是镜像源镜像源可以理解为商店,需要什么商品(python模块),就直接在商店里寻找,如果找到的话,就直接购买(下载) 那么大家想一想,在国外买到货快还是在国内呢,这样就有

  • 使用Anaconda安装tensorflow,keras(Windows)2021-12-26 17:35:25

    主要记载一下在windows上安装tensorflow遇到的问题及安装步骤。不要在原来的环境上安装,因为会重新安装一套库如numpy等,会导致下载多个版本。 1. Anaconda安装tensorflow。 使用Anaconda创建虚拟环境非常方便,这里安装Anaconda的方法可以参考Windows下Anaconda的下载,安装与使

  • pip 换源2021-12-14 17:58:00

    pip 换源是非常常用的操作,记录几个常用的国内源网站 阿里云 https://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) https://pypi.douban.com/simple/ 清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 临时使用

  • python Pip源设置使用清华源2021-12-14 10:31:31

    1、临时使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 1 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 2、永久更改pip源 升级 pip 到最新的版本 (>=10.0.0) 后进行配置: pip install pip -U pip config set global.ind

  • anoconda换源安装opencv2021-12-14 09:04:43

    安装opencv4.4.0失败,向大佬请教后换源成功安装 之前使用如下命令: pip install opencv-python 提示Looking in indexes:https://pypi.tuna.tsinghua.edu.cn/simple ERROR:Could not find a version that satisfies the requirement opencv-python。 解决办法:提示中网址为清华

  • 使用镜像源和trust-host解决:Could not fetch URL https://pypi.org/simple/xxxx/2021-12-13 15:32:38

    pip install xxx包报错: Could not fetch URL https://pypi.org/simple/xxxx/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.org', port=443): Max retries exceeded with url: /simple/cleanlab/ (Caused by SSLError(SSLEO

  • 【darknet “x.weight“ 转 “x.pb“ 文件时 python3 环境依赖】2021-12-09 18:33:31

    darknet "x.weight" 转 "x.pb" 文件时 python3 环境依赖 python3.7 -m pip install Cython -i https://pypi.tuna.tsinghua.edu.cn/simple/ python3.7 -m pip install tensorflow -i https://pypi.tuna.tsinghua.edu.cn/simple/ python3.7 -m pip install ope

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有