Executables in PATH
We want the executables in our $PATH.
Symlinks
Symlink binaries to /usr/local/bin/
- pros: executables available even outside the venv, for all users
- cons: we need to list the executables we're interested in (i.e.
ansible*and NOTpip*)
PATH prefix
PATH=$VENV:$PATH
- pros: no need to list the executables we're interested in
- cons: all executables take precedence, especially
pip