Skip to content
Advertisement

apk python packages not installing in Alpine Docker Image

I have a dockerfile as below:

JavaScript

When I got into the container with docker run -it --rm mycontainer /bin/sh cython appears not to be installed. What am I missing?

JavaScript

Advertisement

Answer

Alpine installed python pacakges using this path /usr/lib/python3.7/site-packages, just run the command inside the container and you will see the package is installed. All you need to add this path to the python search path.

JavaScript

PYTHONPATH

Augment the default search path for module files. The format is the same as the shell’s PATH: one or more directory pathnames separated by os.pathsep (e.g. colons on Unix or semicolons on Windows). Non-existent directories are silently ignored.

In addition to normal directories, individual PYTHONPATH entries may refer to zipfiles containing pure Python modules (in either source or compiled form). Extension modules cannot be imported from zipfiles.

The default search path is installation dependent, but generally begins with prefix/lib/pythonversion (see PYTHONHOME above). It is always appended to PYTHONPATH.

An additional directory will be inserted in the search path in front of PYTHONPATH as described above under Interface options. The search path can be manipulated from within a Python program as the variable sys.path.

python envvar PYTHONPATH

update:

To work with pip installation you need to use -m.

When called with -m module-name, the given module is located on the Python module path and executed as a script.

python3-cmdline

you can test

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement