venv doesn't create activate script python3

前端 未结 5 731
被撕碎了的回忆
被撕碎了的回忆 2020-12-23 00:02

When trying to create a virtulenv using venv with python 3 on ubuntu it isn’t creating an activate script. It conitunally exits with an error 1.

Following docs and o

5条回答
  •  独厮守ぢ
    2020-12-23 00:26

    The command:

    python3 -m virtualenv env
    

    works for me, whereas:

    python3 -m venv env
    

    does not.

提交回复
热议问题