英文:
Yelp dataset's json_to_csv_converter.py file error
问题
我已经仔细阅读了Yelp数据集的文档,然后下载了yelp_dataset.tar并提取了所有的JSON文件(没有任何字符编码错误)。不幸的是,将这些文件从JSON格式转换为CSV格式会输出以下错误信息:
ModuleNotFoundError: No module named 'simplejson'
您可以在此处查看json_to_csv_converter.py文件的图像
有人能帮助解决这个问题吗?
感谢您抽出时间。
英文:
I had read Yelp dataset's documentation well, proceeded to download the yelp_dataset.tar and extracted all json files (without any character encoding error). Unfortunately, converting those files from [tag:json] to [tag:csv] would output this:
ModuleNotFoundError: No module named 'simplejson'
You can have a look at the json_to_csv_converter.py file's image here
Can someone help solve this problem?
Thank you for taking your time.
答案1
得分: 2
你可以使用pip来安装simplejson
,如果它尚未安装。如果仍然导致问题,你可以使用Python内置库中的json
。
json
是simplejson
,已添加到标准库。Json库与simplejson一样快,并且具有较少的拒绝修复的Unicode错误。
一个好的做法是将其中一个作为备用选项之一。
try:
import simplejson as json
except ImportError:
import json
英文:
You can install the simplejson
using pip if it's not installed. If it's still causing the issues, you can use json
form python built-in libraries.
json
is simplejson
, added to the stdlib. Json library is as fast as simplejson and has fewer refused-to-be-fixed Unicode bugs.
A good practice will be to use one or the other as a fallback.
try:
import simplejson as json
except ImportError:
import json
答案2
得分: 0
simplejson 不是标准库的一部分,需要进行安装。您尝试过安装它吗?
pip install simplejson
如果您使用pip,可以使用此命令,或者
conda install simplejson
如果您使用conda。
1: https://pypi.org/project/simplejson/
英文:
simplejson is not part of the standard library and needs to be installed. Have you tried installing it?
pip install simplejson
will work if you use pip, or
conda install simplejson
for conda
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论