Sunday, April 28, 2024
96
rated 0 times [  96] [ 0]  / answers: 1 / hits: 315751  / 3 Years ago, fri, september 3, 2021, 4:21:57

I just installed picc-9.82.9453-linux.run from Microchip website, and at the end it asked me



==> NOTE: You may wish to add the following  
/usr/hitech/picc/9.82/bin
to your PATH environment variable.


What does it mean?



I also need to add this to the environment path:



/usr/hitech/picc-18/pro/9.66/bin  

More From » software-installation

 Answers
5

Partial duplicate: How to add a directory to the PATH?



PATH is an enviroment variable. It basically tells your machine where to search for programs, so when you run your picc program you can just do this:



picc


instead of



/usr/hitech/picc/9.82/bin/picc


To add a directory to your $PATH, follow either one of the options below.



Method 1



Edit ~/.profile:



gedit ~/.profile


find the following line:



PATH="$HOME/bin:$PATH"


and change it to:



PATH="$HOME/bin:$PATH:/usr/hitech/picc/9.82/bin"


Method 2



Run the command below in the terminal:



export PATH=$PATH:/usr/hitech/picc/9.82/bin

[#38142] Friday, September 3, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
tionpromoti

Total Points: 14
Total Questions: 112
Total Answers: 113

Location: Tonga
Member since Tue, Nov 30, 2021
2 Years ago
;