Caminho não configurado para uma configuração

1

Não é possível adicionar o caminho do meu omnet bin directory para a instalação.

Durante a instalação, eu vou para o diretório omnet e digito ./configure , o que me causa os seguintes erros

WARNING: your PATH doesn't contain /home/ABC/Desktop/omnetpp-4.1/bin!
Add the following line to your .profile or .bash_profile (provided you use bash):
export PATH=$PATH:/home/ABC/Desktop/omnetpp-4.1/bin


WARNING: The TCL_LIBRARY environment variable is not set, and without it
Tkenv (the GUI runtime environment) may be unable to find the BLT library.

Add the following line to your .profile or .bash_profile (provided you use bash):
export TCL_LIBRARY=/usr/share/tcltk/tcl8.4

Então eu faço exatamente a coisa ... vou para o arquivo de perfil ~ / .profile e agora se parece com isso

# if running bash
if [ -n "$BASH_VERSION" ]; then
     # include .bashrc if it exists
     if [ -f "$HOME/.bashrc" ]; then
     . "$HOME/.bashrc"
     fi
fi

# set PATH so it includes user's private bin if it exists
export PATH=$PATH:/home/ABC/Desktop/omnetpp-4.1/bin
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
    export TCL_LIBRARY=/usr/share/tcltk/tcl8.4

fi

Mas o erro ainda persiste. O que estou fazendo errado ??

    
por user12895 11.04.2011 / 22:12

1 resposta

3

Certifique-se de ter efetuado login novamente (as alterações ocorrem apenas quando você inicia um novo shell). Além disso, tente usar .bash_profile em vez de .profile . Para testar sem efetuar login novamente, você pode criar o arquivo diretamente digitando:

. ~/.profile
    
por Kees Cook 11.04.2011 / 23:35