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