php -v retorna o comando não encontrado após a instalação [closed]

1

Eu baixei o último lançamento estável do php 7. instalou todas as dependências então:

 ./buildconf
./configure \
    --prefix=$HOME/php7/usr \
    --with-config-file-path=$HOME/php7/usr/etc \
    --enable-mbstring \
    --enable-zip \
    --enable-bcmath \
    --enable-pcntl \
    --enable-ftp \
    --enable-exif \
    --enable-calendar \
    --enable-sysvmsg \
    --enable-sysvsem \
    --enable-sysvshm \
    --enable-wddx \
    --with-curl \
    --with-mcrypt \
    --with-iconv \
    --with-gmp \
    --with-pspell \
    --with-gd \
    --with-jpeg-dir=/usr \
    --with-png-dir=/usr \
    --with-zlib-dir=/usr \
    --with-xpm-dir=/usr \
    --with-freetype-dir=/usr \
    --with-t1lib=/usr \
    --enable-gd-native-ttf \
    --enable-gd-jis-conv \
    --with-openssl \
    --with-mysql=/usr \
    --with-pdo-mysql=/usr \
    --with-gettext=/usr \
    --with-zlib=/usr \
    --with-bz2=/usr \
    --with-recode=/usr \
    --with-mysqli=/usr/bin/mysql_config

depois disso, executei sudo make , sudo make test e sudo make install . tudo correu bem. Acho que faltam alguns passos quando faço php -v . diz command not found Então eu fui para a pasta de instalação /opt/php-7.0.0/bin e tentei ./php -v isso retorna:

PHP 7.0.0 (cli) (built: Dec 11 2015 16:38:27) ( NTS )
Copyright (c) 1997-2015 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2015 Zend Technologies

o que mais eu preciso fazer? qualquer ajuda é muito apreciada.

    
por Abel 11.12.2015 / 18:44

1 resposta

3

Você precisa adicionar /opt/php-7.0.0/bin ao seu caminho.

$export PATH=/opt/php-7.0.0/bin:$PATH
Isso mudará para o shell atual.

Para tornar essas alterações permanentes, adicione o comando acima ao final do seu arquivo ~ / .bash_profile.

    
por 11.12.2015 / 19:06

Tags