Код: Выделить всё
mpirun
mpirun: error while loading shared libraries: libopen-rte.so.40: cannot open shared object file: No such file or directory
Код: Выделить всё
exho $PATH дает
/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
Я добавил в конец .profile юзеря путь но он не действует
#
Код: Выделить всё
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
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
PATH=$PATH:/usr/local/lib
export PATH