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
Uh oh!
There was an error while loading. Please reload this page.
-
I've installed Hatch using
pipxon a Debian Bookworm system; I have/usr/bin/pythonwhich is Python 2.7, and/usr/bin/python3which is Python 3.10. I installedpipxusing 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.tomlwhich 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