PyCharm: Py_Initialize: can't initialize sys standard streams

≯℡__Kan透↙ 提交于 2019-11-29 05:37:28
vinay

I faced the same problem because I created a file named abc.py, remove that file in your project, your error will disappear.

Yes, as you said in the comment, the problem is in the filename 'abc'. You will be able to run this file within PyCharm, if you uncheck:

  • Add content roots to PYTHONPATH
  • Add sources roots to PYTHONPATH

in the menu "Run/Debug Configurations".

I have the same problem, just change your file's name from io.py to something else, It's work!

Finally found how to solve this problem in PyCharm: never use a name like abc.py or test.py.

Simply use another name, like a.py or my-unique-file-name.py

try this: File->Setting->Editor->File Encodings change the Project encoding to UTF-8

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!