i get this error mesage when I try to deploy my project and I really do not understand why:error log
Asked
Active
Viewed 75 times
-1
-
(here I'm in the spiders folder but this is not the problem, I also tried in all other folders) – Clément Apr 26 '16 at 19:19
-
does it give the very same error when you run it on the project folder? – José Ricardo Apr 26 '16 at 19:23
-
Hi, thanks for your answer. Yes it does, unfortunately... – Clément Apr 27 '16 at 11:46
1 Answers
1
shub is unable to build the Python egg of your project. This could be related to a misconfigured setup.py
. Try running the 'build egg' command yourself so you can take a look at the error message: python setup.py clean -a bdist_egg -d temp_directory
(run it in your project directory).
If you don't have any custom/important code in your setup.py
, you can try deleting it, and shub will auto-generate a vanilla one on the next deploy.

Jakob de Maeyer
- 81
- 3