You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Another solution would be to add another ONBUILD line before calling $ pip install -r requirements which would call a script (e.g. called pre-install-dependencies.sh) installing those dependencies.
The text was updated successfully, but these errors were encountered:
Installing lxml, pyyaml, pyzmq and couple of other python packages will currently fail, as they require some libraries in system to be installed.
One solution is to prepare the basic python image with all of them already installed:
$ apt-get install python-dev libxml2-dev libxslt-dev lib32z1-dev libyaml-dev libzmq-dev
Another solution would be to add another ONBUILD line before calling
$ pip install -r requirements
which would call a script (e.g. calledpre-install-dependencies.sh
) installing those dependencies.The text was updated successfully, but these errors were encountered: