"python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
sj_remington wrote:This may be relevant:
https://forum.arduino.cc/t/python-execu ... le/1008150
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
sj_remington wrote:Do you have python3 installed?
If so, where, and where is the IDE looking for it? Post the complete error message.
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
sj_remington wrote:Consider adding the python3 executable location to the $PATH variable.
Re: "python3": executable file not found in $PATH
which python python3
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
ls -l /usr/bin/py*
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
/usr/bin/python --version
sudo ln -s /usr/bin/python /usr/bin/python3
sudo ln -s `which python3` /usr/bin/python3
Re: "python3": executable file not found in $PATH
Re: "python3": executable file not found in $PATH
sudo sh -c "ln -s `which python3` /usr/local/bin/python3"
Re: "python3": executable file not found in $PATH