Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (19.9k points)

I have pulled a docker image to run airflow (pucker/airflow) and it is running well. However, I can't manage to install a new python library on this image. I have read that you have to add the package in the docker file. However, I don't know where it is stored. I work on MacOSX.

Thanks for your help

1 Answer

0 votes
by (25.1k points)

You can install python libraries in the container, you may go into the container via

docker exec -it container_id bash

and there you go with pip install

Browse Categories

...