摘要: 睡一会儿,或者 出去活动10分钟,一直坐着学,效率低下 阅读全文
posted @ 2017-04-09 22:06 xqnq2007 阅读(100) 评论(0) 推荐(0) 编辑
摘要: Traceback (most recent call last): File "convolutional.py", line 326, in <module> tf.app.run() File "/Library/Frameworks/Python.framework/Versions/2.7 阅读全文
posted @ 2017-04-09 10:52 xqnq2007 阅读(1315) 评论(0) 推荐(0) 编辑
摘要: test1下有test01 test02两个文件 ,复制到test2下 则cp -r test1/ test2 权限不够,,则加sudo test2要事先存在, 如果复制test01到当前目录 cp test1/test01 . 后面直接加一个.即可 阅读全文
posted @ 2017-04-09 10:48 xqnq2007 阅读(10728) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 在终端输入vim ~/.zshrc加一句 source ~/.bash_profile 阅读全文
posted @ 2017-04-09 10:13 xqnq2007 阅读(753) 评论(0) 推荐(0) 编辑
摘要: np.zeros(5) [ 0. 0. 0. 0. 0.] 所得类型为数组, numpy.zeros_like(a, dtype=None, order='K', subok=True) 生成一个和a维数相同的全零数组 新建矩阵 如此可生成一个二行三列的矩阵 阅读全文
posted @ 2017-04-06 22:59 xqnq2007 阅读(244) 评论(0) 推荐(0) 编辑
摘要: try: from django.utils import simplejson as jsonexcept: import simplejson as json 阅读全文
posted @ 2017-04-04 22:51 xqnq2007 阅读(777) 评论(0) 推荐(0) 编辑
摘要: 在使用jquery的ajax作请求时,http://127.0.0.1:8080,类似这样的一个本地请求,会产生跨域问题, 解决办法一: jsonp: var url= "http://127.0.0.1:8080/botinterface/?p1="+input+"&callback=?"; jQ 阅读全文
posted @ 2017-04-04 22:48 xqnq2007 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 一 安装 nginx 二 安装 uwsgi ,pip install uwsgi 三 配置nginx 打开 nginx.conf文件, location / { # root html; # index index.html index.htm; include uwsgi_params; uwsg 阅读全文
posted @ 2017-04-04 22:41 xqnq2007 阅读(438) 评论(0) 推荐(0) 编辑
摘要: nginx -t 测试 配置文件是否正确,同时可以查看配置文件路径 nginx -c /usr/local/nginx/conf/nginx.conf 启动nginx ps -ef|grep nginx 查看nginx 进程号 关闭nginx nginx -s stop 或nginx -s quit 阅读全文
posted @ 2017-04-04 22:15 xqnq2007 阅读(405) 评论(0) 推荐(0) 编辑
摘要: //if (document == nil) // Unarchive failed so create a new ReaderDocument object //{ document = [[ReaderDocument alloc] initWithFilePath:filePath pass 阅读全文
posted @ 2017-04-04 22:03 xqnq2007 阅读(424) 评论(0) 推荐(0) 编辑