We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Issue: in the /backend/script.sh file.. there is a line of code source deactivate this is deprecated and no longer used..
/backend/script.sh
source deactivate
Solution:
replace it with conda deactivate to close virtual environment
conda deactivate
The text was updated successfully, but these errors were encountered:
Update:
i made a mistake in assessing the issue earlier we are using python's venv to create a virtual env... and so we cant mix venv with conda
this was causing the issue..
Fix: just use the normal deactivate instead of conda deactivate
deactivate
Sorry, something went wrong.
No branches or pull requests
Issue:
in the
/backend/script.sh
file.. there is a line of codesource deactivate
this is deprecated and no longer used..
Solution:
replace it with
conda deactivate
to close virtual environmentThe text was updated successfully, but these errors were encountered: