You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
skuep edited this page Sep 24, 2014
·
12 revisions
On Linux (Ubuntu)
Installing the AVR toolchain
Download the most current avr8 gnu toolchain from Atmel cd ~ wget http://www.atmel.com/images/avr8-gnu-toolchain-3.4.4.1229-linux.any.x86.tar.gz
Untar tar -xzvf avr8-gnu-toolchain-3.4.4.1229-linux.any.x86.tar.gz
Add necessary paths to PATH environment variable either by executing: export PATH=\$PATH:\$HOME/avr8-gnu-toolchain-linux_x86/bin
or if you want to make this change persistent after opening a new terminal: echo "export PATH=\$PATH:\$HOME/avr8-gnu-toolchain-linux_x86/bin" >> ~/.profile
Note that you have to log out and in again for this change to take effect.