azure-devops-python-samples icon indicating copy to clipboard operation
azure-devops-python-samples copied to clipboard

this breaks at the first step

Open naweedraja opened this issue 5 years ago • 1 comments

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?

naweedraja avatar May 05 '20 14:05 naweedraja

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.

jeffpohlmeyer avatar May 15 '20 19:05 jeffpohlmeyer