
佛祖保佑 永无BUG
simon5169
行到水穷处 坐看云起时
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Makefile.PL;make;make install
yum install -y perl-ExtUtils-CBuilder perl-ExtUtils-MakeMaker原创 2020-08-18 09:29:15 · 488 阅读 · 0 评论 -
centos6 net-snmp ‘SnmpSession’ has no member named ‘transport_configuration’
cd /tmpwget https://sourceforge.net/projects/net-snmp/files/net-snmp/5.7.3/net-snmp-5.7.3.tar.gz/cd net-snmp*./configuremakesudo make installdownload netsnmp and unpack it原创 2020-08-18 08:54:45 · 198 阅读 · 0 评论 -
perl缺少MakeMaker.pm
yum install perl-develyum install perl-ExtUtils-MakeMakercpan -i ExtUtils::MakeMaker原创 2020-05-21 11:41:09 · 731 阅读 · 0 评论 -
python ssl错误(或信任私有证书):全局取消验证
全局取消验证import sslssl._create_default_https_context = ssl._create_unverified_context原创 2020-05-07 12:52:15 · 3096 阅读 · 0 评论 -
cryptography is required for sha256_password or caching_sha2_password
RuntimeError: cryptography is required for sha256_password or caching_sha2_passwordpip install cryptography原创 2020-04-23 09:25:30 · 675 阅读 · 0 评论 -
conda:ModuleNotFoundError: No module named 'redis'
conda install redis-py原创 2020-04-17 18:15:52 · 909 阅读 · 0 评论 -
Macos homebrew
Macos homebrewruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)”brew doctor替换现有上游git -C "$(brew --repo)" remote set-url origin https://mirrors.tuna.tsinghua....原创 2019-10-09 11:38:06 · 383 阅读 · 0 评论 -
zipimport.ZipImportErro
zipimport.ZipImportError: can’t decompress data; zlib not availableyum install zlib zlib-devel -yNo module named ‘_ctypes’yum install libffi-devel -y原创 2019-08-30 17:20:43 · 262 阅读 · 0 评论 -
django.db.utils.OperationalError: 1366
The standard way to get utf8mb4 working in Django is to specify it as DATABASES['default']['OPTIONS'] in settings.py, like this: 'OPTIONS': {'charset': 'utf8mb4'},The workaround is to manually ...原创 2019-08-29 18:38:05 · 315 阅读 · 0 评论 -
CentOS 6:Requires: libc.so.6(GLIBC_2.14)(64bit)
1、查看支持的 gblic 版本# strings /lib64/libc.so.6 | grep GLIBCGLIBC_2.2.5GLIBC_2.2.6GLIBC_2.3GLIBC_2.3.2GLIBC_2.3.3GLIBC_2.3.4GLIBC_2.4GLIBC_2.5GLIBC_2.6GLIBC_2.7GLIBC_2.8GLIBC_2.9GLIBC_2.10GL...原创 2019-08-18 15:41:49 · 3564 阅读 · 0 评论 -
python shell乱码
readline-devel包,并重新编译python:yum install readline-develmakemake installmake cleanmake distclean原创 2019-08-22 15:23:25 · 405 阅读 · 0 评论 -
django.db.utils.NotSupportedError: URIs not supported
vim /usr/local/python3/lib/python3.7/site-packages/django/db/backends/sqlite3/base.py把上面的uri对应True修改为False就ok了。或者升级为python 3.8原创 2019-08-22 12:46:39 · 1253 阅读 · 0 评论 -
geckodriver
url原创 2019-08-21 11:10:39 · 220 阅读 · 0 评论 -
openssl error while loading shared libraries: libssl.so.1.1
ln -s /usr/local/openssl/lib/libssl.so.1.1 /usr/lib64/libssl.so.1.1ln -s /usr/local/openssl/lib/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.1这时openssl version# openssl versionOpenSSL 1.0.1e-fips 1...原创 2019-08-20 12:38:56 · 1481 阅读 · 0 评论 -
ModuleNotFoundError: No module named '_ctypes'的解决办法
3.7版本需要一个新的包libffi-devel,安装此包之后再次进行编译安装即可。#yum install libffi-devel -y#make install原创 2019-08-20 12:14:05 · 1746 阅读 · 0 评论