wooey / Wooey

A Django app that creates automatic web UIs for Python scripts.
http://wooey.readthedocs.org
BSD 3-Clause "New" or "Revised" License
2.11k stars 182 forks source link

Install Script Dependencies #316

Closed yapnel closed 4 years ago

yapnel commented 4 years ago

I have a standalone python script that has some package dependencies. How are the dependencies installed when the script is added to Wooey via GUI or cmdline?

Thanks

Chris7 commented 4 years ago

The dependencies should be present in the environment running Wooey. For my own projects, I use docker and that image has any dependencies required installed in it.

yapnel commented 4 years ago

I think i have misunderstood as i was thinking the end user can upload a script and it will handle the dependencies automatically by installing it. It seems like we have to install the dependencies before user can upload their script and restart the server. Is that correct? Thanks