GDBM doesn't work with Python 3.6 and anaconda

前端 未结 2 1538
庸人自扰
庸人自扰 2021-01-17 17:52

I use Python 3.6 in an anaconda environment. I installed GDBM with

conda install gdbm

The installation went well, however I can\'t use

2条回答
  •  天涯浪人
    2021-01-17 18:21

    Although the question is for Python3, I got here while trying to install gdbm on Python2 so I post my answer as it may be useful for others. The correct command was conda install python-gdbm. Although conda install gdbm went through, the module couldn't be imported. As per here, however, this may not work for Python3.

提交回复
热议问题