Are python 3.x venv environments relocatable?

python, python-3.x, python-venv

Solution

Nope, commands installed in `./bin` have fixed paths in shabang lines.

Problem

As of python 3.3 the stdlib has the venv module for creating virtual environments. Are python 3.x venv environments relocatable?

Original source

Related problems