一、安装第三方库
1、安装paramiko报错,[错误记录]paramiko模块错误:from_buffer() cannot return the address of the raw string
先执行python -m pip install --no-use-pep517 bcrypt,再执行pip install paramiko
pip install --upgrade cryptography
pip install --upgrade dnspython
pip install --upgrade pyldap
2、安装 psycopg2
使用yum方式安装psycopg2,yum install -y python-psycopg2
3、安装xlutils
执行pip install xlutils
4、不识别xlsx文件
需要下载xlrd==1.2.0版本,因为目前xlrd更新到了2.0.1版本,只支持.xls文件。
所以如果需要读取.xlsx文件,需要安装旧版本。
#如果之前安装过,需要卸载原先版本
pip uninstall xlrd
#下载1.2.0版本
pip install xlrd==1.2.0
报错UnicodeEncodeError: 'ascii' codec can't encode characters in position 1-5: ordinal not in range(128)
因为Python2默认使用ASCII编码处理中文
设置语言会采用的系统环境变量值为utf-8:export LC_ALL="en_US.utf8"