How does Python3 venv differ from virtualenv?

I've been using virtualenv and virtualenvwrapper Python packages for a long time .

How does virtualenv differ from Python3's built- in venv module ? Or virtual inline or inline, venv?

+3


source to share


1 answer


Well, at least Python3 venv doesn't have a postactivate

hook - you need to add any environment variables and other stuff to activate

.



+1


source







All Articles