03 2020 档案

摘要:conda install --channel https://conda.anaconda.org/anaconda tensorflow-gpu=1.13.1 阅读全文
posted @ 2020-03-31 05:21 老王哈哈哈 阅读(7162) 评论(0) 推荐(0) 编辑
摘要:用postman做接口的时候首先在文件方面 1.myrun.py import jsonfrom flask import Blueprintfrom flask import requestfrom flask import jsonifyfrom nlg_yongzhuo import text 阅读全文
posted @ 2020-03-30 17:11 老王哈哈哈 阅读(1156) 评论(0) 推荐(0) 编辑
摘要:sudo ubuntu-drivers autoinstall 阅读全文
posted @ 2020-03-29 23:08 老王哈哈哈 阅读(286) 评论(0) 推荐(0) 编辑
摘要:通过:sudo apt-get --reinstall install `dpkg --get-selections | grep '[[:space:]]install' | cut -f1` 来重新安装全部软件,会全部刷新info目录 阅读全文
posted @ 2020-03-18 16:54 老王哈哈哈 阅读(3808) 评论(1) 推荐(0) 编辑
摘要:1、程序后台运行 nohup python test.py > tt.log>&1 & 2、不能及时输出日志 nohup.out中显示不出来python程序中print的东西,这是因为python的输出有缓冲,导致nohup.out并不能够马上看到输出。 python 有个-u参数,使得python 阅读全文
posted @ 2020-03-18 09:26 老王哈哈哈 阅读(3618) 评论(0) 推荐(3) 编辑
摘要:入门级: jupyter notebook --allow-root > jupyter.log 2>&1 & 进阶版: nohup jupyter notebook --allow-root > jupyter.log 2>&1 & 解释: 1. 用&让命令后台运行, 并把标准输出写入jupyte 阅读全文
posted @ 2020-03-18 08:18 老王哈哈哈 阅读(8949) 评论(0) 推荐(0) 编辑
摘要:ps -eo pid,cmd | grep test_1.0.py 阅读全文
posted @ 2020-03-17 16:39 老王哈哈哈 阅读(1499) 评论(0) 推荐(0) 编辑