Skip to content

Instantly share code, notes, and snippets.

@utamadonny
Last active February 8, 2023 10:15
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save utamadonny/3d07d716d760ff6077275b3143995eff to your computer and use it in GitHub Desktop.
Save utamadonny/3d07d716d760ff6077275b3143995eff to your computer and use it in GitHub Desktop.
Install Processing in Linux (Ubuntu 20.04 LTS)

1. Download and Extract

go to https://processing.org/ to download linux version

Move the extarct file to /opt

/opt/processing

2. Create symbolic link

sudo su -c “ln -s /opt/processing-3.0.2/processing /usr/local/bin/processing”a

3 Add application to ubuntu menu

cd /usr/share/applications/
sudo gedit /usr/share/applications/processing.desktop
OR
sudo vim /usr/share/applications/processing.desktop

Copy this

[Desktop Entry] 
Version=2.1 
Name=Processing 
Comment=Processing Rocks 
Exec=processing 
Icon=/opt/processing/lib/icons/pde-256.png 
Terminal=false 
Type=Application 
Categories=AudioVideo;Video;Graphics;

DONE! for check

cat processing.desktop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment