I want to Remove Arduino IDE 1.8.3 "No Such File or Directory"

I've looked over dozens of similar questions, nothing has jumped out as applicable. ls returns "arduino-1.8.3" {lower case} ron@ron:~$ cd (or sudo cd) /arduino-1.8.3 returns No Such File or Directory"

In the directory is uninstall.sh but it won't run from the file manager.

I realize I'm probably missing something obvious to an experienced user which I'm not.

TIA

Ron

2

2 Answers

To uninstall arduino, either...

In terminal...

sudo apt-get purge arduino arduino-core

or

If the arduino folder is in your home folder...

In terminal...

cd ~/arduino-1.8.3 # use the exact folder name here
sudo ./uninstall.sh

if i get your problem as like you want to remove arduino from your pc but cant, probably your problem, not writing down the programme name fully, so pls learn the exact name by using;

dpkg -l |grep arduino 

and pls go this links as told before;

How can I uninstall software?

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like