09 2020 档案

摘要:https://blog.csdn.net/zjc910997316/article/details/93662410 阅读全文
posted @ 2020-09-29 16:35 牛郎 阅读(155) 评论(0) 推荐(0)
摘要:报错提示: 安装和卸载各种环境依赖,导致我的python环境被破坏,当我运行原来可以正常运行的程序就会提示以下错误: OSError: SavedModel file does not exist at: saved_model_dir/{saved_model.pbtxt|saved_model. 阅读全文
posted @ 2020-09-29 14:51 牛郎 阅读(17451) 评论(3) 推荐(0)
摘要:请坚持看完,再操作 背景: 要让opencv支持darknet,对opencv库进行修改和编译,根据这个教程 报错: 执行:make -j2 时报错如下: [100%] Built target opencv_perf_video[100%] Building CXX object modules/ 阅读全文
posted @ 2020-09-27 17:40 牛郎 阅读(1279) 评论(0) 推荐(0)
摘要:apt-get install libdc1394-22-dev 阅读全文
posted @ 2020-09-24 15:04 牛郎 阅读(2611) 评论(0) 推荐(1)
摘要:https://blog.csdn.net/weixin_41053564/article/details/81254410 阅读全文
posted @ 2020-09-24 14:59 牛郎 阅读(848) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_41896508/article/details/80795239 阅读全文
posted @ 2020-09-24 10:52 牛郎 阅读(845) 评论(0) 推荐(0)
摘要:ps -ef | grep pycharm | awk '{print $2}' | xargs kill -9 ps -ef | grep python | grep -v grep | awk '{print $2}' | xargs kill -9 阅读全文
posted @ 2020-09-23 09:29 牛郎 阅读(92) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/jubing/p/11648266.html 阅读全文
posted @ 2020-09-22 17:25 牛郎 阅读(537) 评论(0) 推荐(0)
摘要:netstat -a #查看端口占用情况 netstat -antup #可查看占用端口的进程,可用kill -9 结束进程 ps aux|grep python #只看python的相关进程,可用kill -9强制结束进程 ps -ef | grep python | grep -v grep | 阅读全文
posted @ 2020-09-07 11:03 牛郎 阅读(432) 评论(0) 推荐(0)
摘要:安装: sudo apt-get install git 配置: git config --global user.name "用户名" git config --global user.email "邮箱" 阅读全文
posted @ 2020-09-01 09:31 牛郎 阅读(128) 评论(0) 推荐(0)