随笔分类 -  其他

摘要:# 3维import numpy as np import matplotlib.pyplot as plt from sklearn.datasets.samples_generator import make_classification from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = Axes3D(fig) ... 阅读全文
posted @ 2018-12-07 17:01 下路派出所 阅读(1944) 评论(0) 推荐(0)
摘要:传输层的TCP是基于网络层的IP协议的,而应用层的HTTP协议又是基于传输层的TCP协议的,而Socket本身不算是协议,就像上面所说,它只是提供了一个针对TCP或者UDP编程的接口。 TCP:如果我们直接使用TCP/IP来传输内容的话,我们需要在客户端和服务端自己定义一个协议来传输内容(WCF已经 阅读全文
posted @ 2018-04-12 16:59 下路派出所 阅读(121) 评论(0) 推荐(0)
摘要:2.填入下面的license server: http://intellij.mandroid.cn/ http://idea.imsxm.com/ http://idea.iteblog.com/key.php 以上方法验证均可以 阅读全文
posted @ 2017-12-25 09:32 下路派出所 阅读(178) 评论(0) 推荐(0)
摘要:1. git init # 初始化本地仓库 2. git remote add origin git@github.com:policeme/DGCNN.git # 关联远程仓库 3. git pull origin master --allow-unrelated-histories #把远程仓库和本地同步,消除差异 4. git add 5. git commit 6. git push ... 阅读全文
posted @ 2017-12-16 16:24 下路派出所 阅读(222) 评论(0) 推荐(0)
摘要:pip3 升级 pip3 install --upgrade pip pip国内的一些镜像 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/ 豆瓣(douban) ht 阅读全文
posted @ 2017-12-07 20:07 下路派出所 阅读(236) 评论(0) 推荐(0)
摘要:cmd pip install opencv-contrib-python -i https://pypi.mirrors.ustc.edu.cn/simple/ 阅读全文
posted @ 2017-12-07 19:49 下路派出所 阅读(3397) 评论(0) 推荐(0)