-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's "source" not "bash" the install script #4
Comments
That makes sense to me, I will change the readme. Thank you, Takanori! |
Fixed |
Thank you very much for your quick fix. |
Hi, you missed the second occurrence of |
Oh thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In our cluster, we don't put
source /home1/software/packages/miniconda3/etc/profile.d/conda.sh
in~/.bashrc
to avoid conflicts.In this case,
source /home1/software/packages/miniconda3/etc/profile.d/conda.sh bash install_script.sh --download-weights
does not work because we "Can't execute conda activate from bash script".
conda activate model-angelo
silently failed and installed Torch etc into thebase
environment. I didn't notice the issue untilpip
failed.did the trick.
(The messed up
base
environment was rolled back byconda install --revision X
as explained here.)The text was updated successfully, but these errors were encountered: