You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have python version 3.10.6 and binaries /usr/bin/python3 and usr/bin/python3.10 exist, but not /usr/bin/python3.1.
./configure detects python version 3.1 and stops because it cannot find python3.1 in the system path.
I followed the README tutorial and chose to compile with python3 binding. Here's the last lines of the output of command PYTHON=python3 ./configure --enable-python
checking for python3 version... 3.1
checking for python3 platform... linux
checking for python3 script directory... ${prefix}/local/lib/python3.10/dist-packages
checking for python3 extension module directory... ${exec_prefix}/local/lib/python3.10/dist-packages
checking for python3.1... no
configure: error: Cannot find python3.1 in your system path
The text was updated successfully, but these errors were encountered:
It comes from line 12659 of configure. It runs a small python command which simply takes the 3 first characters of the python version. So I changed line 12659 from
System information
Describe the problem you're observing
I have python version 3.10.6 and binaries
/usr/bin/python3
andusr/bin/python3.10
exist, but not/usr/bin/python3.1
../configure
detects python version 3.1 and stops because it cannot findpython3.1
in the system path.I followed the README tutorial and chose to compile with python3 binding. Here's the last lines of the output of command
PYTHON=python3 ./configure --enable-python
The text was updated successfully, but these errors were encountered: