Are python 3.3 venv environments roaming?

Starting with python 3.3, stdlib has a venv module for creating virtual environments. Are python 3.3 venv environments roaming?

+6
source share
1 answer

No, the commands installed in ./bin have fixed paths in shabang lines.

+3
source

Source: https://habr.com/ru/post/978825/


All Articles