Pycharm ValueError: source code string cannot contain null bytes

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pycharm ValueError: source code string cannot contain null bytes相关的知识,希望对你有一定的参考价值。

参考技术A pycharm中存在空字符串,导致运行python脚本报错,“source code string cannot contain null bytes”
而pycharm中是显示出来如图:

有的人说pycharm不能显示出来,但vi显示借鉴用vi打开文件才能看出来,多了很多“^@”,即空字符(ascii 码 0,在程序里一般写作”\0”),在 vim 里就显示成 ^@,如下图:

vi替换命令

pycharm命令行快捷启动

打开 本用户目录下的.bashrc文件

vim .bashrc

在末尾添加一行

alias pycharm="the-path-to-pycharm.sh"

最后保存退出

然后更新设置

source .bashrc

 此方法应该适用于其他任意软件的命令行终端启动方式

以上是关于Pycharm ValueError: source code string cannot contain null bytes的主要内容,如果未能解决你的问题,请参考以下文章

[Trouble Shooting - Python] ValueError: source code string cannot contain null bytes

Python 学习记录Pycharm导入第三方包报错问题……ValueError: check_hostname requires server_hostname

Pandas DataFrame:ValueError:值的长度(13)与索引的长度(12)不匹配

解决Pycharm无法导入包问题 Unresolved reference

pycharm Unresolved reference 无法引入包

pycharm中from xx import xx报错:Unresolved reference