Não é possível criar o importenrror do Python 3.5 virtualenv: nenhum módulo chamado 'gdbm'

1

Estou com o mesmo problema que este indivíduo, mas infelizmente voltar para o Python 3.4 não é uma opção para mim, preciso estar executando o 3.5.

Eu quebrei o comando não encontrado?

Aqui está o que estou tentando

mkvirtualenv --python=/usr/local/bin/python3 test_env

Saída:

Traceback (most recent call last):
  File "/usr/lib/python3.5/dbm/gnu.py", line 4, in <module>
    from _gdbm import *
ImportError: 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.5/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
ImportError: No module named 'gdbm'
    
por apardes 07.12.2015 / 05:37

1 resposta

0

Eu tenho o Python 3.6 instalado e funcionando Eu tentei muitas coisas, mas

sudo apt-get install python3.6-gdbm

Este comando funcionou para mim para python 3.5 você deve usar

sudo apt-get install python3.5-gdbm
    
por Vishal Patel 29.12.2017 / 08:34