Macbook 今早唤醒,执行下面的几行简单的代码,报错找不到load方法。
import json # add json data into db json_path = '/Users/X/Desktop/keywords/ieee_keywords.json' with open(json_path) as f: data =json.load(f) print(data)
Traceback (most recent call last): File "json.py", line 2, in import json File "/Users/X/Desktop/crawl_keywords/json.py", line 12, in data =json.load(f) AttributeError: module 'json' has no attribute 'load'
这是咋回事,我又尝试新建了一个文件夹,用virtualenv
开个虚拟环境,还是这个错误。
甚至我在虚拟环境里试图使用pip install flask
Traceback (most recent call last): File "/Users/Ru/Desktop/crawl_keywords/py3/bin/pip", line 7, in from pip import main File "/Users/Ru/Desktop/crawl_keywords/py3/lib/python3.5/site-packages/pip/__init__.py", line 16, in from pip.vcs import git, mercurial, subversion, bazaar # noqa File "/Users/Ru/Desktop/crawl_keywords/py3/lib/python3.5/site-packages/pip/vcs/mercurial.py", line 9, in from pip.download import path_to_url File "/Users/Ru/Desktop/crawl_keywords/py3/lib/python3.5/site-packages/pip/download.py", line 6, in import json File "/Users/Ru/Desktop/crawl_keywords/json.py", line 10, in data =json.load(f) AttributeError: module 'json' has no attribute 'load'
其他包同样的,例如psycopg2
找不到connect
等。
For some reason, when importing json, the built-in module of python is not imported, but your local json.py file is imported! !
You can take a look at https://github.com/xuelangZF/... to learn about the package import mechanism
There are fewer words, json.loads, not load