[[Python]] https://pypa.github.io/pipx/ ## installing from the current directory ``` pipx install . -e ``` ## using pipx with pyenv to specify a different python version ``` pipx install package --python $(which python3) ``` if the virtual environment already exists, you will have to delete it - even using `--force` won't change this The venv is located in: ``` ~/.local/pipx/venvs ```