We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Our system does not provide the command python, only python2 and python3. I believe this is becoming increasingly widespread.
python
python2
python3
The configure scripts accepts only python and I do not see a way to change this via options or environment variables.
I suggest to replace
AC_CHECK_PROG(HAVE_PYTHON,[python],[python],[no])
with
AC_CHECK_PROGS(HAVE_PYTHON,[python, python3, python2],[no])
Consider dropping support for python2.
The text was updated successfully, but these errors were encountered:
No python can be found after modification
Sorry, something went wrong.
use python2
No branches or pull requests
Our system does not provide the command
python
, onlypython2
andpython3
. I believe this is becoming increasingly widespread.The configure scripts accepts only
python
and I do not see a way to change this via options or environment variables.I suggest to replace
with
Consider dropping support for
python2
.The text was updated successfully, but these errors were encountered: