对于 CS 架构 (Client/Server),网络中的每个节点是不对称的,具体而言可以分为两类 ...
分类:
其他好文 时间:
2020-02-14 00:43:26
阅读次数:
68
## 代码部分```javaimport org.apache.http.HttpEntity;import org.apache.http.client.methods.CloseableHttpResponse;import org.apache.http.client.methods.Http... ...
分类:
编程语言 时间:
2020-02-13 17:02:49
阅读次数:
89
To use EMC NW NMM to backup MS SQL always on database, that is a simple and safe way to protector data. Here is an example. node1,node2,node3 they are ...
分类:
其他好文 时间:
2020-02-12 22:07:44
阅读次数:
71
安装各种机器学习包的时候,经常出现无法下载安装包的问题,而导致安装失败。清华的镜像速度很快,下面对本方法进行讲解。 命令法 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple packages 注:把packages替换为安装模块。 配置法 ...
分类:
其他好文 时间:
2020-02-12 13:24:44
阅读次数:
147
1、使用命令出现 WARNING: You are using pip version 19.3.1; however, version 20.0.2 is available. You should consider upgrading via the 'python -m pip install ...
分类:
编程语言 时间:
2020-02-12 10:58:32
阅读次数:
218
这是一道简单应用线段树的题 代码也是书上的,敲一边熟悉一下 #include <iostream>#include <cstdio>using namespace std;const int MAX=1e5+10;long long sum[MAX<<2],add[MAX<<2]; void up_ ...
分类:
其他好文 时间:
2020-02-11 19:07:08
阅读次数:
53
1、cmd 进入 并 创建 pip文件夹 md pip 2、在 pip文件夹下创建pip.ini ,并输入 [global] index-url = http://mirrors.aliyun.com/pypi/simple/ [install] trusted-host=mirrors.aliyu ...
分类:
Web程序 时间:
2020-02-11 11:42:59
阅读次数:
88
由于pip安装默认的访问地址为 http://pypi.python.org/simple/ 为外网,速度慢而且容易超时报错 国内常用的镜像源有 :阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc. ...
分类:
其他好文 时间:
2020-02-11 09:59:56
阅读次数:
73
条件:maven、java应用程序代码、pom.xml -pom.xml文件 1 <project> 2 <groupId>edu.berkeley</groupId> 3 <artifactId>simple-project</artifactId> 4 <modelVersion>4.0.0</ ...
分类:
编程语言 时间:
2020-02-11 09:47:08
阅读次数:
80
今天用pip安装skimage时报错: 这是因为网络的问题,需要使用国内的镜像源来加速,比如豆瓣源 命令改为: pip install scikit-image -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 或者 p ...
分类:
编程语言 时间:
2020-02-11 09:24:45
阅读次数:
95