出错
_._-
这个作者很懒,什么都没留下…
展开
-
python ImportError: No module named ***
python ImportError: No module named ***项目场景:在项目中执行python脚本,conda环境中已安装依赖包,执行脚本提示包缺失问题描述:conda环境已安装包,sudo python找不到包python ***.py arg0# PermissionError:# 报错,没有代码中没有访问文件的权限(这是要解决的问题)################################ 上sudo(问题就出在这)$ sudo python ***.p原创 2021-07-09 09:39:31 · 175 阅读 · 0 评论 -
Ubuntu系统内存不足,不能tab补全命令
Ubuntu系统内存不足,不能tab补全命令Ubuntu 内存不足Ubuntu 内存不足sudo df -h文件系统 容量 已用 可用 已用% 挂载点udev 32G 0 32G 0% /devtmpfs 6.3G 2.3M 6.3G 1% /run/dev/sda1 234G 216G 6.5G 98% /tmpfs 32G 40K 32G 1原创 2021-06-17 21:23:10 · 209 阅读 · 0 评论 -
Windows10卸载密钥导致win10未激活--解决
背景:电脑出厂预装win10家庭版系统,联网自动激活在安装office2019时误操作执行了slmgr.vbs /upk导致系统出于未激活状态。根据这里解决问题。0. 左下角搜索激活运行疑难解答运行命令要认真审题!认真审题!认真审题!...原创 2020-12-23 20:51:19 · 2584 阅读 · 1 评论 -
Asterisk config出错
转载自:Asterisk 安装疑难问题:configure: error: *** termcap support not found (on modern systems, this typically means the ncurses development package is missing)解决方法:sudo apt-get install ncurses-dev问题:configure: error: *** uuid support not found (this typically转载 2020-11-16 16:09:09 · 386 阅读 · 0 评论 -
VMware Workstation 与 Device/Credential Guard 不兼容
状况:VM一直正常使用,某一天打不开了。原因:前一天把Win10的沙盒打开了。win10专业版,1903VM版本:Mware® Workstation 15 Pro,15.5.0 build-14665864解决方法,沙盒关了。控制面板== 》 程序和功能==》启用或关闭 Windows 功能==》Windows 沙盒 关闭,重启。...原创 2020-05-13 10:56:51 · 259 阅读 · 0 评论 -
Linux下C++创建文件夹
查了几个发现自己不能使用,提示:error: no matching function for call to ‘mkdir’看这篇博客发现应该加上::http://blog.csdn.net/mathgeophysics/article/details/10200317#include <sys/stat.h>... int isCreate = ::mkdir(path.c_str(),S_IRUSR | S_IWUSR | S_IXUSR | S_IRWXG | S_IRWX原创 2020-05-08 21:13:38 · 2656 阅读 · 0 评论 -
TypeError: startswith first arg must be bytes or a tuple of bytes, not str
if line.startswith(’@’) and not flag:TypeError: startswith first arg must be bytes or a tuple of bytes, not strpython2的程序,在python3下运行会报错。改用pyhton2后正常了。以后脚本中一定区分开python与python2和python3....原创 2019-11-15 17:10:09 · 14295 阅读 · 1 评论