-
Just wondering if this was normal behavior, I don't recall it doing this from a version about a week ago. I get this in the terminal: Installing pip dependencies: | Ran pip subprocess with arguments: ...etc etc, 200 more dependencies listed. Any idea of what I can edit to stop this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I figured out how to stop all the hullabaloo from happening before relauncher.py is called. Comment out the following lines in webui.cmd like so: :: call conda env create -n "%conda_env_name%" -f environment.yaml Now I am sure these are put here to ensure everything is in its proper place before running, but it appears to me this is fine to do after the first run. If you do a git pull you probably ought to let it do this again once to make sure it's synced up to any changes made to environment.yaml. |
Beta Was this translation helpful? Give feedback.
I figured out how to stop all the hullabaloo from happening before relauncher.py is called. Comment out the following lines in webui.cmd like so:
:: call conda env create -n "%conda_env_name%" -f environment.yaml
:: call conda env update -n "%conda_env_name%" --file environment.yaml --prune
Now I am sure these are put here to ensure everything is in its proper place before running, but it appears to me this is fine to do after the first run. If you do a git pull you probably ought to let it do this again once to make sure it's synced up to any changes made to environment.yaml.