potiuk commented on PR #35620: URL: https://github.com/apache/airflow/pull/35620#issuecomment-1811701160
Generally yes. pipx will use the global python. This is expected because `pipx` creates it's own virtualenv and uses the python version you specified it to use. I think better suggestion for it will be to add few suggestions for users to follow. I think defaulting to `which python` is generally bad idea (for example it will not run if your python 3.12 is global and you are NOT in a virtual env.. So I'd suggest to describe the reaon and explaining few options: a) change global to not use python 3.12 b) specifying python version (for example `--python python3.10`) c) using `which python` ifyou want to use python that you have on a path in the current virtualenv Also this problem will likely go away soon, I am just about to remove the limit for Python 3.12 and change the installation of breeze to use `pyproject.toml` and different build tools so it might be not needed anyway. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
