由于在linux上有fq的需要,于是上gayhub上找*的client端。项目地址:https://github.com/falseen/*-pyqt
该项目需要安装pyqt5,但是pip3 install pyqt5提示错误Can't connect to HTTPS URL because the SSL module is not available。
一开始以为是因为缺少ssl模块,遂于交互模式下执行import ssl后依旧提示这个错误。apt-get install openssl-devel后还是不行
后来思索一番,既然缺少ssl,那会不会是https出的问题呢?按照这个方向查询,发现很可能是这个原因,而且换源可以解决这个问题,遂换源。
至于国内镜像源,有豆瓣,阿里云,清华,中科大等,我选择了阿里源,具体操作如下:
在文件~/.pip/pip.conf
中添加或修改:
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host=mirrors.aliyun.com
之后即可正常安装
此外还有一种错误,提示如下configparser.MissingSectionHeaderError: File contains no section headers.
一般是因为配置文件的编码方式有问题,在mousepad中打开,选中菜单栏中的Document,然后把wirte with unicode BOM的勾去掉即可