错误集锦
Stupid-Tyro
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
问题与解决error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No suc
openssl version提示:/usr/local/openssl/bin/openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory这是由于openssl库的位置不正确造成的。可以做一个软连接假如你的lib...原创 2019-05-30 22:03:21 · 19842 阅读 · 2 评论 -
ModuleNotFoundError: No module named ·_tkinter'
ModuleNotFoundError: No module named ·_tkinter’原因:缺少python-tk文件sudo apt-get install python3-tk原创 2019-05-30 22:04:34 · 2001 阅读 · 1 评论 -
WARNING:The directory/..ts parent directory is not owned by the current user and the cache has been
WARNING: The directory ‘/home/wang/.cache/pip/http’ or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. ...原创 2019-05-31 20:14:01 · 3714 阅读 · 0 评论 -
ModuleNotFoundError: No module named _ ctypes
ModuleNotFoundError: No module named _ ctypes原因:缺少liffi-devel安装:yum install libffi-devel或sudo apt-get install libffi-dev原创 2019-05-31 20:15:10 · 2144 阅读 · 0 评论 -
无法获得锁 /var/lib/dpkg/lock
无法获得锁 /var/lib/dpkg/lock原因:另外一个程序正在运行,由于它在运行时,会占用软件源更新时的系统锁措施:1.ps -e | grep aptsudo kill 进程2.sudo rm /var/cache/apt/archives/locksudo rm /var/lib/dpkg/lock...原创 2019-05-31 20:16:24 · 210 阅读 · 0 评论 -
zipimport.ZipImportError: can't decompress data; zlib not available in Linux
zipimport.ZipImportError: can’t decompress data; zlib not available in Linux原因: 缺少zlib的相关工具包导致的安装相关依赖包:yum -y install zlib*或sudo apt-get install zlib*...原创 2019-05-31 20:17:15 · 11094 阅读 · 1 评论
分享