我正在运行MacOS Catalina 10.15.7,并打开了一个常规的终端会话。是的,我在我的shell中运行tmux,但这从来都不是问题,直到昨天突然在我的工作日中间。
我能想到的唯一与问题开始时间相关的事件是使用我的IDE(IntelliJ IDEA,主要是一个Java项目,带有一些用Python编写的操作工具(并笨拙地选择";安装";当它声称没有找到这些模块时,正确的做法是简单地将IDE指向Python 3.7解释器,这是在机器上检查项目的一个非常标准的部分。
那里的许多答案都指向寻找一个糟糕的";json.py";模块,但是我们可以从下面看到,没有这样的坏模块被导入。
如何";"修复";Python 3安装?
$ python3
Python 3.7.7 (default, Mar 10 2020, 15:43:33)
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> d = {'a' : 100, 'b' : 200}
>>> json.dumps(d)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'json' has no attribute 'dumps'
>>> print(json.__file__)
None
以下是它的位置:
$ which python3
/usr/local/bin/python3
我相信这证实了我的记忆,它是通过brew
:安装的
$ brew uninstall python3
Error: Refusing to uninstall /usr/local/Cellar/python/3.7.7
because it is required by glib, graphviz and gts, which are currently installed.
You can override this and force removal with:
brew uninstall --ignore-dependencies python3
然而,我尝试了brew reinstall python3
,但没有成功。
好吧,我想我会处理"glib、graphviz和gts"后来,但对我来说,诀窍是完全删除了Python3:的brew安装
brew uninstall --ignore-dependencies python3
现在一切恢复正常:
$ python3
Python 3.7.3 (default, Apr 24 2020, 18:51:23)
[Clang 11.0.3 (clang-1103.0.32.62)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> d = {'a' : 100, 'b' : 200}
>>> json.dumps(d)
'{"a": 100, "b": 200}'