上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 77 下一页
摘要: 阅读全文
posted @ 2016-04-07 16:51 ahuo 阅读(142) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-from sklearn.cluster import KMeansfrom sklearn.externals import joblibimport numpyfeature =numpy.random.rand(40,20)#调用kmeans类cl 阅读全文
posted @ 2016-04-01 17:33 ahuo 阅读(429) 评论(0) 推荐(0) 编辑
摘要: random numpy.random.rand(3,2) 内存操作 numpy.getbuffer() numpy.frombuffer() list to npy numpy.fromiter(llb,np.int) 阅读全文
posted @ 2016-04-01 17:16 ahuo 阅读(247) 评论(0) 推荐(0) 编辑
摘要: HostMonitor 可以对windows和linux下的主机进行很多信息的监控,还提供web方式查看 阅读全文
posted @ 2016-04-01 09:36 ahuo 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: 1. apt-get install mysql-server 2. apt-get isntall mysql-client 修改 /etc/mysql/my.cnf #bind-address = 127.0.0.1 本地登录 mysql -u root -p grant all on *.* 阅读全文
posted @ 2016-03-22 09:31 ahuo 阅读(235) 评论(0) 推荐(0) 编辑
摘要: from poster.encode import multipart_encode from poster.streaminghttp import register_openers import urllib2 register_openers() #datagen, headers = multipart_encode({"Img": open("1.jpg", "rb")}) #re... 阅读全文
posted @ 2016-03-16 16:45 ahuo 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 1.使用ssl创建未经验证的上下文,在urlopen中传入上下文参数 import sslimport urllib2 context = ssl._create_unverified_context()print urllib2.urlopen("https://www.12306.cn/", c 阅读全文
posted @ 2016-03-07 11:08 ahuo 阅读(1989) 评论(0) 推荐(0) 编辑
摘要: find src -type d | sed 's/src/mkdir -p dst/'|sh 阅读全文
posted @ 2016-03-02 11:14 ahuo 阅读(1187) 评论(0) 推荐(0) 编辑
摘要: 执行 dlib.__file__ 输出 '/anaconda2/lib/python2.7/site-packages/dlib/__init__.pyc' 阅读全文
posted @ 2016-02-25 11:04 ahuo 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: 解决方案:pip install pydot2 阅读全文
posted @ 2016-01-12 09:37 ahuo 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 一、python中对文件、文件夹操作时经常用到的os模块和shutil模块常用方法。1.得到当前工作目录,即当前Python脚本工作的目录路径: os.getcwd()2.返回指定目录下的所有文件和目录名:os.listdir()3.函数用来删除一个文件:os.remove()4.删除多个目录:os... 阅读全文
posted @ 2016-01-08 09:03 ahuo 阅读(1797) 评论(1) 推荐(0) 编辑
摘要: lsusbcat /sys/kernel/debug/usb/devicesT: Bus=02 Lev=00 Prnt=00 Port=00 Cnt=00 Dev#= 1 Spd=12 MxCh= 2B: Alloc= 17/900 us ( 2%), #Int= 1, #Iso= 0D: Ver=... 阅读全文
posted @ 2015-12-31 13:59 ahuo 阅读(2194) 评论(0) 推荐(0) 编辑
摘要: root 登录sudo gedit /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf加:greeter-show-manual-login=true设置密码:sudo passwd root右键在当前位置打开终端sudo apt-get install... 阅读全文
posted @ 2015-12-30 10:25 ahuo 阅读(281) 评论(0) 推荐(0) 编辑
摘要: csv2npycccsv=numpy.genfromtxt('/root/c.csv', delimiter = ',')buf2npyimga=numpy.frombuffer(buf,numpy.uint8) 阅读全文
posted @ 2015-12-25 08:59 ahuo 阅读(382) 评论(0) 推荐(0) 编辑
摘要: for dir in `find ./ -type d ` ;do echo -n "$dir " ;find $dir -type f | wc -l ;echo "" ;done;./4336694 59./0630088 38./0001667 196./3545234 5./3840810 ... 阅读全文
posted @ 2015-12-23 13:55 ahuo 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 77 下一页