在macOS上使用dbm.gnu for Python 3.6.3

问题描述 投票:2回答:2

我正在尝试打开.db类型的db.gnu文件。尝试使用内置的Python 3模块dbm打开它失败并显示以下消息:

dbm.error: db type is dbm.gnu, but the module is not available

我知道我必须在gnu中使用dbm子模块来打开它。但是,我无法在macOS上的Python 3.6.3中这样做:

In [1]: import dbm
In [2]: dbm.gnu
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-2-ddbd370a1085> in <module>()
----> 1 dbm.gnu

AttributeError: module 'dbm' has no attribute 'gnu'

如何在Mac上使用dbm.gnu

python-3.x gnu dbm
2个回答
3
投票

我会尝试brew install gdbm

之后我尝试了:

Python 3.6.4 (default, Jan  6 2018, 11:51:59)
[GCC 4.2.1 Compatible Apple LLVM 9.0.0 (clang-900.0.39.2)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm.gnu
>>> print(dbm.gnu)
<module 'dbm.gnu' from '/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/dbm/gnu.py'>
>>> import dbm
>>> dbm.gnu
<module 'dbm.gnu' from '/usr/local/Cellar/python3/3.6.4_2/Frameworks/Python.framework/Versions/3.6/lib/python3.6/dbm/gnu.py'>

2
投票

我已经在pyenv中安装了3.6.4,所以我必须执行以下操作:

brew install gdbm

之后,我需要重新安装3.6.4。

pyenv uninstall 3.6.4
pyenv install 3.6.4
pyenv global 3.6.4

在此之后,它按预期工作。

© www.soinside.com 2019 - 2024. All rights reserved.