You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.9 KiB

  1. Too many issues will kill our team's development velocity, drastically.
  2. Make sure you have checked all steps below.
  3. ### Prerequisite
  4. * [ ] Make sure your problem is not listed in [the common build problems](https://github.com/pyenv/pyenv/wiki/Common-build-problems).
  5. * [ ] Make sure no duplicated issue has already been reported in [the pyenv-virtualenv issues](https://github.com/pyenv/pyenv-virtualenv/issues). You should look in closed issues, too.
  6. * [ ] Make sure you are not asking us to help solving your specific issue.
  7. * GitHub issues is opened mainly for development purposes. If you want to ask someone to help solving your problem, go to some community site like [Gitter](https://gitter.im/yyuu/pyenv), [StackOverflow](https://stackoverflow.com/questions/tagged/pyenv), etc.
  8. * [ ] Make sure your problem is not derived from packaging (e.g. [Homebrew](https://brew.sh)).
  9. * Please refer to the package documentation for the installation issues, etc.
  10. * [ ] Make sure your problem is not derived from other plugins.
  11. * This repository is maintaining the `pyenv-virtualenv` plugin only. Please refrain from reporting issues of other plugins here.
  12. ### Description
  13. - [ ] Platform information (e.g. Ubuntu Linux 20.04):
  14. - [ ] OS architecture (e.g. amd64):
  15. - [ ] pyenv version:
  16. - [ ] pyenv-virtualenv version:
  17. - [ ] Python version:
  18. - [ ] virtualenv version (if installed):
  19. - [ ] Please attach the debug log of a faulty Pyenv invocation as a gist
  20. * If the problem happens in a Pyenv invocation, you can turn on debug logging by setting `PYENV_DEBUG=1`, e.g. `env PYENV_DEBUG=1 pyenv install -v 3.6.4`
  21. * If the problem happens outside of a Pyenv invocation, get the debug log like this:
  22. ```
  23. # for Bash
  24. export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
  25. # for Zsh
  26. export PS4='+(%x:%I): %N(%i): '
  27. set -x
  28. <reproduce the problem>
  29. set +x
  30. ```