解决各种问题集

Posted by 甘家城 on 2017-11-30 Viewed times

python篇:

1.windows上,在pip install xxx失败的时候怎么办?

答:http://www.lfd.uci.edu/~gohlke/pythonlibs/到这里面寻找whl,下载之后用 pip install xxx.whl 来安装。

2.解决pip3报错Fatal error in launcher: Unable to create process using ‘"’。

一种:

import pip
pip.main(['install','ModuleName'])

另一种:

python3 -m pip install whlName

3.linux上python3中文会显示UnicodeEncodeError: ‘ascii’ codec can’t encode character。

import io 
import sys 
sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='utf-8')

4.requests爬到的中文网页输出在windows cmd会出错

res=requests.get(url)
res.encoding='gbk'
print(res.text)

5.cv2.imread读取中文路径出错

#读取
im = cv2.imdecode(np.fromfile(file,dtype=np.uint8),-1)
#写入
cv2.imencode('.jpg',res)[1].tofile(file)

6.sublime字体高低不齐

下载安装字体 http://cloud.alphadn.com/blog/yahei-consolas.zip
修改user_setting中的font_face为

"font_face": "YaHei Consolas Hybrid",

7.windows上编写的shell文件在linux运行报错

vim file.sh
:set ff=unix

版权声明:本文为原创文章,转载请注明出处和作者,不得用于商业用途,请遵守 CC BY-NC-SA 4.0协议。

支付宝打赏 微信打赏

赞赏一下