/ usr / bin / env: ‘python’: nenhum arquivo ou diretório

3

Estou tentando instalar Kit de desenvolvimento do Gitlab no Windows Ubuntu Bash .

$python3 output

Python 3.5.2 (default, Nov 17 2016, 17:05:23)
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>

$python output

The program 'python' can be found in the following packages:
 * python-minimal
 * python3
Try: sudo apt install <selected package>

Quando tento fazer isso:

sudo apt-get install build-essential 
./configure 
make -j4 # adjust according to your available CPU capacity 
sudo make install

Esta é a saída após ./configure

$ ./configure
/usr/bin/env: ‘python’: No such file or directory
$ python --version 

The program 'python' can be found in the following packages:
 * python-minimal
 * python3
Try: sudo apt install <selected package>

$which -a python

sem saída

Como posso resolver isso? Eu sou novo no Ubuntu.

    
por artidokuz 04.08.2017 / 10:29

3 respostas

3

Você parece ter python3 instalado, mas não é chamado de python e, de qualquer forma, o script que você deseja executar ( configure ) requer o python 2. Então:

  1. Instale o python2

    sudo apt-get install python2.7-minimal
    
  2. Execute novamente

    ./configure
    

Se isso falhar novamente, chame-o com python2 explicitamente:

/usr/bin/python2.7 configure
    
por terdon 04.08.2017 / 11:27
1

Eu tive o mesmo problema depois de instalar o Ubuntu 18.04 e tentar executar alguns scripts python.

Eu tentei:

sudo apt-get install python2.7-minimal

mas ainda tenho o mesmo erro. Eu resolvi isso por:

sudo apt install python-minimal
    
por Waweru 24.08.2018 / 06:15
0

Eu tive o mesmo problema. Ele foi resolvido ao vincular python ao python2.7 com os seguintes comandos

cd /usr/bin
sudo mv python python.bak
sudo ln -s /usr/bin/python2.7 /usr/bin/python
    
por Ranjan Ravee 09.04.2018 / 17:15