azure-devops-python-samples
azure-devops-python-samples copied to clipboard
this breaks at the first step
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?
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.