Replies: 1 comment 6 replies
-
I'll add a special value for the |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've installed Hatch using
pipx
on a Debian Bookworm system; I have/usr/bin/python
which is Python 2.7, and/usr/bin/python3
which is Python 3.10. I installedpipx
using Python 3.10, so it uses the same Python interpreter to install tools. As a result, Hatch itself is executed using Python 3.10.I've got some environments in
pyproject.toml
which do not specify anything for 'python' at all, but this means that when Hatch tries to build those environments it searches for Python and finds/usr/bin/python
. Ick :-)Is there any way I can tell Hatch to just use the Python interpreter that it was executed with?
Beta Was this translation helpful? Give feedback.
All reactions