-
Notifications
You must be signed in to change notification settings - Fork 3
So close: The 'galaxy' distribution was not found #234
Comments
To get this working I had to
And because the ansible_gulp_1 container had failed I also had to
And then from inside the container
So clearly those tasks are failing in the ansible-container build |
So the issue with gulp was that the package.json file from galaxy/ was not being copied over to the container for the "Install node packages" task to do anything useful. Unfortunately you get a 0 return from "npm install" even when a package.json file is not present, so all looks to have executed correctly during the build, when it really didn’t. The issue with the django container was that by installing galaxy in editable mode (“setup.py develop”) the egg-info dir was being dropped into the container’s /galaxy directory. Upon restarting the container, that galaxy folder (and consequently the egg-info dir) is overwritten with a mount of your local galaxy directory. By calling “setup.py develop” from outside of the mount location and setting PYTHONPATH to the source directory, you can have the egg-info persist over restarts. I’ve pull requested a branch for these fixes here: ansible/galaxy#21 |
This issue was moved to ansible/galaxy#59 |
I have managed to get this up and running behind the firewall following the CONTRIBUTOR instructions.
I noticed the following fly by the logs on 'make run'
I similarly get the same when I 'make createsuperuser'
I have tried putting / /galaxy and even /galaxy/galaxy on the python path from 'make shell' but I can't get the galaxy-manage command work.
Too many new concepts in my brain at once, could use a pointer?
My setup is
The text was updated successfully, but these errors were encountered: