Permission denied when activating venv

前端 未结 5 1533
臣服心动
臣服心动 2021-01-30 06:25

I just started a new python project and created a venv inside the project folder by running virtualenv venv in the terminal. However, when I run venv/bin/acti

5条回答
  •  猫巷女王i
    2021-01-30 06:59

    On my VSC, I used these and it worked.

    python3 -m venv .venv
    
    source .venv/bin/activate
    

提交回复
热议问题