gitextract_nqzhc3gf/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.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 ├── version.bats ├── virtualenv.bats └── virtualenvs.bats