OS:ubuntu16.04
同一个服务器,我的账户是 user1,同事是 user2 我使用 python2.7 单编译 mm 命令时候报错:
Traceback (most recent call last): File "/usr/lib/python3.6/dbm/gnu.py", line 4, in <module> from _gdbm import * ModuleNotFoundError: No module named '_gdbm'
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "/usr/lib/python3/dist-packages/CommandNotFound/CommandNotFound.py", line 7, in <module> import dbm.gnu as gdbm File "/usr/lib/python3.6/dbm/gnu.py", line 6, in <module> raise ImportError(str(msg) + ', please install the python3-gdbm package') ImportError: No module named '_gdbm', please install the python3-gdbm package
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File "/usr/lib/command-not-found", line 27, in <module> from CommandNotFound.util import crash_guard File "/usr/lib/python3/dist-packages/CommandNotFound/init.py", line 3, in <module> from CommandNotFound.CommandNotFound import CommandNotFound File "/usr/lib/python3/dist-packages/CommandNotFound/CommandNotFound.py", line 9, in <module> import gdbm ModuleNotFoundError: No module named 'gdbm'
切换 python3.x 也是一样 sudo update-alternatives --config python
There are 2 choices for the alternative python (providing /usr/bin/python).
0 /usr/bin/python2 150 auto mode
Press <enter> to keep the current choice[*], or type selection number:
1
SunsetShimmer 2022-07-25 21:00:40 +08:00 via Android
一个猜想。
当前用户没安装 gdbm 这个包,但是成功的那个用户安装了? pip 可以把包安装在用户 home 目录下。 |
2
ruanimal 2022-07-26 10:14:44 +08:00
对比下两个用户的环境变量,问题应该就解决了
|
3
yhm2046 OP 我把 gdbm 卸载重新安装, 再打开一个新窗口就行了
|