ICode9

精准搜索请尝试: 精确搜索
  • python使用2022-09-13 23:01:59

    包管理工具   python高级版本自带pip pip修改镜像方式 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 包管理工具   python高级版本自带pip 国内的镜像 pypi 清华大学源:https://pypi.tuna.tsinghua.edu.cn/simple pypi 腾讯源:http://mirrors.clo

  • python安装命令2022-09-12 17:00:22

    python安装包 镜像网站 https://registry.npmmirror.com/binary.html?path=python/ 镜像包安装 pip install xxx -i https://pypi.tuna.tsinghua.edu.cn/simple 镜像安装:pip install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple pip install numpy -i https://pypi.tuna

  • pyChar编辑器笔记2022-09-11 22:04:45

    1、添加镜像源地址 清华: https://pypi.tuna.tsinghua.edu.cn/simple 豆瓣: https://pypi.douban.com/simple/ 阿里: https://mirrors.aliyun.com/pypi/simple/ 参考: https://www.cnblogs.com/kaibindirver/p/14646921.html     2、添加第三方库 Project Interpreter   3、

  • java: simple factory2022-09-11 21:34:57

      /* * 版权所有 2021 涂聚文有限公司 * 许可信息查看: * 描述: *简单工厂模式 simple factory * 历史版本: JDK 14.02 * 2021-12-12 创建者 geovindu * 2021-12-15 添加 Lambda * 2021-12-15 修改:date * 接口类 * 2021-12-15 修改者:Geovin Du * 生成API帮助文档的指令

  • ABC266 - E,F Solutions2022-09-08 22:05:48

    目录ABC266 - E,F SolutionsE - Throwing the DieProblem StatementSolutionImplementationF - Well-defined Path Queries on a NamoriProblem StatementSolutionImplementation ABC266 - E,F Solutions E - Throwing the Die Problem Statement Let us play a game using a di

  • pip安装更换镜像2022-09-05 14:04:31

    原文链接 使用pip来安装python包有时候安装起来会非常慢,因此需要换成国内的源来加速下载: 1 单次修改源 以Torch为例,常规下载方式为: pip install torch 修改为阿里源: pip install -i https://mirrors.aliyun.com/pypi/simple torch 2 修改默认源 如果不想在每一次下载都指定源,可

  • 设置Windows的pip镜像配置文件 pip.ini2022-09-05 12:30:26

    1. 前言首先来看看有什么 pip 镜像地址 清华 https://pypi.tuna.tsinghua.edu.cn/simple豆瓣 http://pypi.douban.com/simple/阿里 http://mirrors.aliyun.com/pypi/simple/有这三个镜像就足够了。 2.配置 pip.ini 文件步骤一:在文件资源器软件的路径框输入 %APPDATA% 回车    

  • python小知识--使用pip/pip3 install 命令下载安装包时,速度慢、经常断连的情况2022-09-04 10:01:51

    直接提供方法 设置源   WIN+R键 cmd命令   执行如下两条命令----------------这使用国内的云 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple pip config set install.trusted-host mirrors.aliyun.com      然后再试一试 pip下载命令  下载速

  • 怎么解决Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection2022-08-29 11:01:14

    问题: 安装包出现Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'ConnectTimeoutError 解决办法: pip install selectivesearch -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 简单的来说就是使

  • pip安装的时候使用阿里云镜像2022-08-29 10:31:16

    如题,记录一下问题,很久没有用了,省的以后还得先查.       pip install flake8 -i https://mirrors.aliyun.com/pypi/simple/ pip install yapf -i https://mirrors.aliyun.com/pypi/simple/ 备注:pip安装的时候有时候因为pip的版本与我们想要安装的插件下载的版本不一致,会报

  • Simple RegEx Tutorial2022-08-27 07:31:20

    https://dl.icewarp.com/online_help/203030104.htm   Simple RegEx Tutorial Regular Expression can be used in Content Filter conditions. Regular Expressions can be extremely complex but they are very flexible and powerful and can be used to perform compariso

  • PyCharm+PyQt5+QtDesigner配置(三)2022-08-25 09:02:10

    换电脑这么多天了,一直没用python写界面应用,昨天用到,需要重新配置环境,于是开始在百度搜索,看到一篇博客写的挺条理的, 嗯是我的菜,于是默默看完,最后发现这位大哥真的是转载的我的。 写了又不看,我要这博客有何用:) 重新安装还是有一些坑,补充记录一下 一、pip 安装包不匹配问题 1.pip u

  • ELK-内置分词器-simple_pattern分词器2022-08-22 22:01:41

    一.simple_pattern分词器 simple_pattern分词器是根据正则表达式进行分词的分词器 #创建映射并定义字段内容分词的正则表达式 #正则表达式表示,如果连续有3个数字在一起,则可以被当作一个单词 PUT myindex-simple_pattern { "settings": { "analysis": {

  • github 代码简单讲解2022-08-16 17:01:06

      github 地址 : https://github.com/lijiesheng/rabbitmq/tree/simple simple 模式   分支1 :simple-data-lose     没有引入应答机制,只要消费者关闭,队列中的数据就会丢失。服务器重启,数据也会丢失。   分支2 :simple     引入了应答机制,消费者关闭再次打开,仍然可以消

  • 关于安装PyTorch2022-08-15 21:01:32

    1 假设你的机器上已经安装了python 和pip(没有安装的话可以参考) https://www.cnblogs.com/8335IT/p/16581772.html 2 直接安装torchvision是安装不了的,会中途报错    需要先安装pytorch 再安装torchvision 使用国内源: pip install torch -i https://pypi.tuna.tsinghua.edu.cn/s

  • python(pip)包/模块离线安装2022-08-15 15:00:53

    1、生成requirements.txt文件   如果有同环境服务器,可直接生成requirements.txt,会把当前服务器下的包和版本写入文件中。 pip freeze > requirements.txt   如安装指定包,创建requirements.txt,输入包名==版本号 // 只输入包名,默认最新版本。   例:xlwt==1.3.0 2、下载包  

  • 快速安装 docker-compose2022-08-11 11:34:00

    实验运行环境 linux debian 11 apt install -y python3 python3-dev python3-pip libssl-dev ca-certificates pip3 install --upgrade -i https://pypi.python.org/simple docker-compose docker-compose 官方参考文档

  • Windows下Python换国内源2022-08-08 14:33:17

    有时使用PIP安装第三方库的时候,速度非常慢,及其影响效率 对于这种情况,我们最好的方式就是要通过镜像来进行安装 换源方式也比较简单,下面是换清华源,个人感觉比较好用 打开CMD,输入: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 查看换成功没 1.在运行

  • pytorch 安装软件2022-08-07 09:32:12

      1.  有已经安装好的 anaconda ,已经安装好的pytorch;   2.  打开 anaconda prompt如下图:       3.  激活pytorch    (base) C:\Users\XXXXX>activate pytorch      4. 安装需要安装的工具 如安装pandas       pip install pandas       一般网速较慢,使用镜像

  • pip下载速度很慢2022-08-04 12:03:36

    临时方法: pip install <包名称> -i https://pypi.tuna.tsinghua.edu.cn/simple   永久解决: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple   国内主要的镜像地址  

  • pip 使用国内镜像源2022-07-28 14:02:27

    国内镜像源 (1)阿里云 https://mirrors.aliyun.com/pypi/simple/ (2)豆瓣https://pypi.douban.com/simple/ (3)清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ (4)中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/ (5)华中科技大学http://pypi.hustunique.com/ linux 环境

  • 并不对劲的CF1454D&E&F: Number into Simple Partition2022-07-25 14:03:03

    CF1454D: Number into Sequence 题目大意 给出一个正整数\(n\)(\(n>1\))。 你需要找出一个正整数序列\(a_1,a_2,...,a_k\)满足: 1.\(\forall i\in\{ 1,2,...,k\},a_i>1\); 2.\(a_1\times a_2\times ...\times a_k=n\); 3.\(\forall i\in \{1,2,..,k-1\},a_{i+1}\)能被\(a_i

  • Flask 源码剖析(一)请求入口2022-07-20 21:00:43

    Flask 源码剖析 flask 是一个基于 Python 开发的 wsgi 微型框架。flask 有两个核心依赖库:Werkzug和jinjia。其中werkzeug 负责核心的逻辑模块,比如路由、请求和应答的封装、WSGI 相关的函数等;jinja负责模板的渲染,主要用来渲染返回给用户的 html文件内容。 1.入口 web 程序都是从服

  • python准备工作2022-07-17 11:03:41

    pip包管理 你可以通过以下命令来判断是否已安装: pip --version # Python2.x 版本命令 pip3 --version # Python3.x 版本命令 pip list # 列出已安装的包 pypi 镜像使用帮助 pypi 镜像在每次同步成功后间隔 5 分钟同步一次。 #临时使用 pip install -i https://pypi.

  • 【python】pip默认源更换为清华镜像2022-07-17 11:00:38

    临时更换 pip install package -i https://pypi.tuna.tsinghua.edu.cn/simple 永久使用 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple  

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

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

ICode9版权所有