Libpython3.6m.so.1.0 not found

It seems that since yesterdays update, installing python dependencies fails with the following error:

/home/circleci/.local/share/virtualenvs/project-zxI9dQ-Q/bin/python: error while loading shared libraries: libpython3.6m.so.1.0: cannot open shared object file: No such file or directory

The config.yml is up to date with version 2.0.

Fixed: Changed docker image from circleci/python:3 to circleci/python:3.6 and it worked!

This might coincide with the release of python 3.7 (where python 3 started to reference python 3.7) - pinning to a specific version (i.e. 3.6) is the correct approach.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.