You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
running the command python3 -m venv env && . env/bin/activate && pip install -r requirements.txt just wont go past. I have tried to break the command into parts. but then there is no correct path for env/bin/activate. the activate is in the Scripts folder. but running it from there gives another "deactivate { " error. can you provide resolution for this?
The text was updated successfully, but these errors were encountered:
You're running on Windows since the activate is in scripts.
So run the following in 3 separate commands:
python -m venv env
env/Scripts/activate
pip install -r requirements.txt
Then you should be able to go in and deal with the frustration of the rest of this not working.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
running the command python3 -m venv env && . env/bin/activate && pip install -r requirements.txt just wont go past. I have tried to break the command into parts. but then there is no correct path for env/bin/activate. the activate is in the Scripts folder. but running it from there gives another "deactivate { " error. can you provide resolution for this?
The text was updated successfully, but these errors were encountered: