VS Code 一直出现 Pylint not installed 问题的解决
Contact me:
Blog -> https://cugtyt.github.io/blog/index
Email -> cugtyt@qq.com
GitHub -> Cugtyt@GitHub
VS Code在写python的时候一直提示Pylint not installed的错误,即使所有包都已经安装,路径也正确设置了,网上很多方法都没有解决,关掉pylint会失去很多功能提示,我的解决方法是:
卸载python,重新安装在新的自定义目录中
然后在VS Code中重新设置python的位置,重新安装好后出现过pip install xxx编码错误的问题:
File "c:\users...........
return s.decode(sys.__stdout__.encoding)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb6 in position 34: invalid start byte
解决方法是:
打开
c:\program files\python36\lib\site-packages\pip\compat\__init__.py
约75行return s.decode('utf_8')
改为return s.decode('cp936')
来自 https://segmentfault.com/q/1010000008071661