码迷,mamicode.com
首页 >  
搜索关键字:simple    ( 6450个结果
Python安装技巧
豆瓣源安装第三方库模块 pip install -r ./req.txt moviepy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com ...
分类:编程语言   时间:2020-02-08 19:41:27    阅读次数:93
插入排序
实现思路: 1.从数组的第二个数据开始往前比较,即一开始用第二个数和他前面的一个比较,如果 符合条件(比前面的大或者小,自定义),则让他们交换位置。 2.然后再用第三个数和第二个比较,符合则交换,但是此处还得继续往前比较,比如有 5个数 ,17比45小,需要交换,但是17也比20小,也要交换,当不需 ...
分类:编程语言   时间:2020-02-08 11:55:33    阅读次数:67
没有连接的AMQP / RabbitMQ通道何时死亡?(when does an AMQP/RabbitMQ channel with no connections die?)
I have a simple RabbitMQ test program randomly enqueuing messages, and another reading them, all using Spring-AMQP. If the consumer dies (for example ...
分类:其他好文   时间:2020-02-08 11:51:37    阅读次数:113
anaconda安装tensorflow问题: Could not find a version that satisfies the requirement tensorboard
背景:想要为下载的anaconda安装tensorflow 使用命令 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow 报错如下: 解决办法:创建一个虚拟虚拟环境,在虚拟环境中安装tensorflow,然后使用pyc ...
分类:其他好文   时间:2020-02-07 19:09:58    阅读次数:87
寒假学习进度-10(pyecharts的下载和使用)
1.下载 最初是常规方法 pip install pyecharts 发现总是下载失败,网上说是由于墙的原因,下载时会出现断线和速度过慢的问题导致下载失败,所以建议通过清华镜像来进行下载: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple ...
分类:其他好文   时间:2020-02-07 16:24:36    阅读次数:150
Python源码---Excell写
CMD安装 xlwt pip install xlwt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com 源码———— import xlwtnew_workbook = xlwt.Workbook ...
分类:编程语言   时间:2020-02-07 13:06:35    阅读次数:71
Python源码---Excell读
Excell 文件 选项 公式 R1C1样式 CMD安装 xlrd pip install xlrd -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com 源码———— import xlrdxlsx ...
分类:编程语言   时间:2020-02-07 12:53:18    阅读次数:65
Echart 词云图 上手代码 同含(echarts-wordcloud.js)最简单的教程 复制可用
先上示例图: 这是自定义图片的示例图 先给最简单的非自定义图代码 1 <html> 2 <head> 3 <meta charset="utf-8"> 4 <!-- <script src='https://cdn.bootcss.com/echarts/3.7.0/echarts.simple.j ...
分类:Web程序   时间:2020-02-07 11:06:10    阅读次数:142
更改PIP源地址
临时更改 可以在使用pip的时候,加上参数 i和镜像地址(如 https://pypi.tuna.tsinghua.edu.cn/simple), 例如:pip install i https://pypi.tuna.tsinghua.edu.cn/simple pandas,这样就会从清华镜像安装 ...
分类:其他好文   时间:2020-02-06 20:13:04    阅读次数:120
python清华镜像
首先,如果只是临时下载一个包 那么可以使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple 要下的包名 1 如果是永久修改镜像源 pip install pip -U pip config set global.index-url ht ...
分类:编程语言   时间:2020-02-06 16:32:23    阅读次数:76
6450条   上一页 1 ... 58 59 60 61 62 ... 645 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!