一、Bits Job windows后台智能传输服务 Background Intelligent Transfer Service (BITS),用于HTTP或SMB文件传输;它可以给任务设置优先级和异步下载,智能调节带宽,从而不占用其他应用的网络资源。 Powershell和bitsadmin. ...
分类:
其他好文 时间:
2020-03-30 00:11:20
阅读次数:
140
1.简单工厂模式(Simple Factory Pattern) 一个工厂生产所有的产品,根据输入参数决定产品的种类。 #include "Factory.h" #include "ProductA.h" #include "ProductB.h" Product* Factory::createP ...
分类:
编程语言 时间:
2020-03-29 22:39:39
阅读次数:
105
在是使用pip安装的时候总是超时 换源 豆瓣:http://pypi.douban.com/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/simple 临时使用: 可以在使用pip的时候加参数-i https://pypi.tuna.tsinghua.ed ...
分类:
编程语言 时间:
2020-03-29 01:32:39
阅读次数:
107
使用python虽然导入库非常方便,但有时也会碰到许多的问题。下载速度有时候很慢。在网上找来了一个关于将python的pip调成寻找国内镜像的方法。 国内镜像地址: http://pypi.douban.com/simple/ 豆瓣 http://mirrors.aliyun.com/pypi/si ...
分类:
编程语言 时间:
2020-03-28 16:18:32
阅读次数:
85
http://pypi.douban.com/simple/ http://mirrors.aliyun.com/pypi/simple/ https://pypi.tuna.tsinghua.edu.cn/simple/ https://pypi.python.org/simple ...
分类:
其他好文 时间:
2020-03-26 12:10:09
阅读次数:
56
Dockerfile的部分内容如下: RUN mkdir /root/.pip && echo -e "[global]\nindex-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf RUN pip inst ...
分类:
其他好文 时间:
2020-03-26 12:07:48
阅读次数:
117
首先,常用的国内镜像: 1 http://pypi.douban.com/simple/ 豆瓣 2 http://mirrors.aliyun.com/pypi/simple/ 阿里 3 http://pypi.hustunique.com/simple/ 华中理工大学 4 http://pypi. ...
分类:
编程语言 时间:
2020-03-26 12:00:04
阅读次数:
196
import sklearn.datasets.make_moons时: 报错: ModuleNotFoundError: No module named 'numpy.testing.nosetester' 原因: numpy、sklearn、scipy、joblib版本不兼容。 解决方法: 将所 ...
分类:
其他好文 时间:
2020-03-25 23:30:46
阅读次数:
978
安装Selenium和下载Driver 安装selenium pip3 install selenium -i http://pypi.douban.com/simple --trusted-host pypi.douban.com 下载Driver 打开:http://npm.taobao.org ...
分类:
其他好文 时间:
2020-03-25 21:12:37
阅读次数:
58
1、采用国内源,加速下载模块的速度2、常用pip源(上一篇博客介绍过):– 豆瓣:https://pypi.douban.com/simple– 阿里:https://mirrors.aliyun.com/pypi/simple3、加速安装的命令:– >: pip install -i https: ...
分类:
编程语言 时间:
2020-03-25 14:57:23
阅读次数:
92