├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── no-response.yml └── workflows │ └── tests.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MAINTENANCE.md ├── README.md ├── bin ├── pyenv-activate ├── pyenv-deactivate ├── pyenv-sh-activate ├── pyenv-sh-deactivate ├── pyenv-virtualenv ├── pyenv-virtualenv-delete ├── pyenv-virtualenv-init ├── pyenv-virtualenv-prefix └── pyenv-virtualenvs ├── etc └── pyenv.d │ ├── rehash │ └── envs.bash │ ├── uninstall │ └── envs.bash │ └── which │ ├── conda.bash │ ├── python-config.bash │ └── system-site-packages.bash ├── install.sh ├── libexec └── pyenv-virtualenv-realpath ├── shims ├── activate └── deactivate └── test ├── activate.bats ├── conda-activate.bats ├── conda-deactivate.bats ├── conda-prefix.bats ├── conda.bats ├── deactivate.bats ├── delete.bats ├── envs.bats ├── hooks.bats ├── init.bats ├── installer.bats ├── pip.bats ├── prefix.bats ├── python.bats ├── pyvenv.bats ├── stubs └── stub ├── test_helper.bash ├── tmp └── .gitignore ├── version.bats ├── virtualenv.bats └── virtualenvs.bats /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTENANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/MAINTENANCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/README.md -------------------------------------------------------------------------------- /bin/pyenv-activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-activate -------------------------------------------------------------------------------- /bin/pyenv-deactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-deactivate -------------------------------------------------------------------------------- /bin/pyenv-sh-activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-sh-activate -------------------------------------------------------------------------------- /bin/pyenv-sh-deactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-sh-deactivate -------------------------------------------------------------------------------- /bin/pyenv-virtualenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-virtualenv -------------------------------------------------------------------------------- /bin/pyenv-virtualenv-delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-virtualenv-delete -------------------------------------------------------------------------------- /bin/pyenv-virtualenv-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-virtualenv-init -------------------------------------------------------------------------------- /bin/pyenv-virtualenv-prefix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-virtualenv-prefix -------------------------------------------------------------------------------- /bin/pyenv-virtualenvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/bin/pyenv-virtualenvs -------------------------------------------------------------------------------- /etc/pyenv.d/rehash/envs.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/etc/pyenv.d/rehash/envs.bash -------------------------------------------------------------------------------- /etc/pyenv.d/uninstall/envs.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/etc/pyenv.d/uninstall/envs.bash -------------------------------------------------------------------------------- /etc/pyenv.d/which/conda.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/etc/pyenv.d/which/conda.bash -------------------------------------------------------------------------------- /etc/pyenv.d/which/python-config.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/etc/pyenv.d/which/python-config.bash -------------------------------------------------------------------------------- /etc/pyenv.d/which/system-site-packages.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/etc/pyenv.d/which/system-site-packages.bash -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/install.sh -------------------------------------------------------------------------------- /libexec/pyenv-virtualenv-realpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/libexec/pyenv-virtualenv-realpath -------------------------------------------------------------------------------- /shims/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/shims/activate -------------------------------------------------------------------------------- /shims/deactivate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/shims/deactivate -------------------------------------------------------------------------------- /test/activate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/activate.bats -------------------------------------------------------------------------------- /test/conda-activate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/conda-activate.bats -------------------------------------------------------------------------------- /test/conda-deactivate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/conda-deactivate.bats -------------------------------------------------------------------------------- /test/conda-prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/conda-prefix.bats -------------------------------------------------------------------------------- /test/conda.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/conda.bats -------------------------------------------------------------------------------- /test/deactivate.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/deactivate.bats -------------------------------------------------------------------------------- /test/delete.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/delete.bats -------------------------------------------------------------------------------- /test/envs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/envs.bats -------------------------------------------------------------------------------- /test/hooks.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/hooks.bats -------------------------------------------------------------------------------- /test/init.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/init.bats -------------------------------------------------------------------------------- /test/installer.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/installer.bats -------------------------------------------------------------------------------- /test/pip.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/pip.bats -------------------------------------------------------------------------------- /test/prefix.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/prefix.bats -------------------------------------------------------------------------------- /test/python.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/python.bats -------------------------------------------------------------------------------- /test/pyvenv.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/pyvenv.bats -------------------------------------------------------------------------------- /test/stubs/stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/stubs/stub -------------------------------------------------------------------------------- /test/test_helper.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/test_helper.bash -------------------------------------------------------------------------------- /test/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /test/version.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/version.bats -------------------------------------------------------------------------------- /test/virtualenv.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/virtualenv.bats -------------------------------------------------------------------------------- /test/virtualenvs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyenv/pyenv-virtualenv/HEAD/test/virtualenvs.bats --------------------------------------------------------------------------------