Hi Olivier, What's your login shell? If it's Bash, did you edit ~/.bashrc by any chance? The default file contains this snippet: --8<---------------cut here---------------start------------->8--- if [[ $- != *i* ]] then # We are being invoked from a non-interactive shell. If this # is an SSH session (as in "ssh host command"), source # /etc/profile so we get PATH and other essential variables. [[ -n "$SSH_CLIENT" ]] && source /etc/profile # Don't do anything else. return fi # Source the system-wide file. source /etc/bashrc --8<---------------cut here---------------end--------------->8--- You need to source /etc/profile if you want the environment variables like PATH to be set properly. You can do this from ~/.bashrc as is done in the snippet, or from other files such ~/.profile or ~/.xinitrc. Hope that helps! -- Pierre Neidhardt https://ambrevar.xyz/