I am install Ninja on Ubuntu (which is running based on windows).
I'm following the following steps:
apt-get install re2c
git clone https://github.com/ninja-build/ninja.git
cd ninja
./configure.py --bootstrap
cp ./ninja /usr/bin
But there is a problem after type the command at ./configure.py --bootstrap
that I cannot solve:
/usr/bin/env: ‘python’: Permission denied
I am in root user, and the python 3 is installed.
The permission list:
ls -ld configure.py # see the permission
-rwxrwxrwx 1 # the listed permission
Has anyone seen this problem?