I am new to programming and made a simple app.
Trying to get it in apk, but fails every time with a message:
#include pyconfig.h
pyconfig.h not found
I have searched a web for a solution, and have tried a lot but nothing helps.
I have tried:
sudo apt-get install python-dev
output:
(Note, python2.7-is-dev-python2.7 instead of python-dev (messages occurs all the time))
sudo apt-get install python3.8-dev
sudo apt-get install python3-dev
sudo find / -name pyconfig.h
output:
have pyconfig.h
sudo python2.7-config --includes
output:
-I/usr/include/python2.7 -I/usr/include/x86_64-linux-gnu/python2.7
Input:
sudo cp /usr/include/python2.7 /usr/include/python2.7/pyconfig.h
output:
-I/usr/include/python2.7 -I/usr/include/x86_64-linux-gnu/python2.7
Made same with python3.8
sudo python3.8-config --includes
output:
-I/usr/include/python3.8 -I/usr/include/python3.8
I have been doing everything, but nothing seems to work out.
Please, help me with this issue!