"No module dbm" 使用 pyenv 安装时 python
"No module dbm" when using pyenv installed python
我希望使用 pyenv 来管理 docker 图像中的多个 python 版本。我目前遇到一个问题 运行 python2.7.17
在 debian:buster-slim
图像中缺少一个包 dbm
:
Python 2.7.17 (default, Apr 22 2021, 18:07:32)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named dbm
有趣的是 python 的系统版本可以很好地加载此模块:
Python 2.7.16 (default, Oct 10 2019, 22:02:15)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm
>>> print(dbm)
<module 'dbm' from '/usr/lib/python2.7/lib-dynload/dbm.x86_64-linux-gnu.so'>
Pyenv Python3 安装没有这个问题。这只发生在 Python2.7.
我发现了这个 post,这是一些相关但没有成功的解决方案:GDBM doesn't work with Python 3.6 and anaconda
知道为什么我在使用 pyenv 时缺少 dbm.so
而在使用我的系统版本 python 时却没有吗?
我通过将 pyenv 安装命令放在 Dockerfile 顶部的任何其他自定义构建逻辑之前来修复此问题:
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
ca-certificates \
build-essential \
git \
unzip \
bzip2 \
libsqlite3-dev \
libssl-dev \
libbz2-dev \
libffi-dev \
libdb-dev \
python-gdbm \
libreadline-dev \
python-openssl \
zlib1g-dev \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV PREV_USER="$USER"
ENV PYENV_ROOT=/home/myuser/.pyenv
ENV PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
USER myuser
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl https://pyenv.run | bash \
&& eval "$(pyenv init -)" \
&& eval "$(pyenv virtualenv-init -)" \
&& pyenv install 2.7.17 \
&& pyenv install 3.6.10
USER $PREV_USER
不确定具体细节,但现在可以使用了。
我希望使用 pyenv 来管理 docker 图像中的多个 python 版本。我目前遇到一个问题 运行 python2.7.17
在 debian:buster-slim
图像中缺少一个包 dbm
:
Python 2.7.17 (default, Apr 22 2021, 18:07:32)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named dbm
有趣的是 python 的系统版本可以很好地加载此模块:
Python 2.7.16 (default, Oct 10 2019, 22:02:15)
[GCC 8.3.0] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import dbm
>>> print(dbm)
<module 'dbm' from '/usr/lib/python2.7/lib-dynload/dbm.x86_64-linux-gnu.so'>
Pyenv Python3 安装没有这个问题。这只发生在 Python2.7.
我发现了这个 post,这是一些相关但没有成功的解决方案:GDBM doesn't work with Python 3.6 and anaconda
知道为什么我在使用 pyenv 时缺少 dbm.so
而在使用我的系统版本 python 时却没有吗?
我通过将 pyenv 安装命令放在 Dockerfile 顶部的任何其他自定义构建逻辑之前来修复此问题:
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
ca-certificates \
build-essential \
git \
unzip \
bzip2 \
libsqlite3-dev \
libssl-dev \
libbz2-dev \
libffi-dev \
libdb-dev \
python-gdbm \
libreadline-dev \
python-openssl \
zlib1g-dev \
build-essential \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV PREV_USER="$USER"
ENV PYENV_ROOT=/home/myuser/.pyenv
ENV PATH="$PYENV_ROOT/shims:$PYENV_ROOT/bin:$PATH"
USER myuser
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN curl https://pyenv.run | bash \
&& eval "$(pyenv init -)" \
&& eval "$(pyenv virtualenv-init -)" \
&& pyenv install 2.7.17 \
&& pyenv install 3.6.10
USER $PREV_USER
不确定具体细节,但现在可以使用了。