Skip to content

Instantly share code, notes, and snippets.

@wilsenhc
Forked from evgenyneu/setup_cursor_ubuntu.md
Created May 8, 2025 20:41
Show Gist options
  • Save wilsenhc/4c2e0150fcc2cea97888fd81956e3c2d to your computer and use it in GitHub Desktop.
Save wilsenhc/4c2e0150fcc2cea97888fd81956e3c2d to your computer and use it in GitHub Desktop.
Install Cursor AI code editor on Ubuntu 24.04 LTS

Install Cursor AI editor on Ubuntu 24.04

  1. Use the Download button on www.cursor.com web site. It will download the NAME.AppImage file.

  2. Copy the .AppImage file to your Applications directory

cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
  1. Install libfuse2
sudo apt update
sudo apt install libfuse2
  1. Make it an executable
chmod +x ~/Applications/cursor.AppImage
  1. Run
~/Applications/cursor.AppImage --no-sandbox
  1. Add cursor shortcut

Add to .bashrc or .zshrc

alias cursor='~/Applications/cursor.AppImage --no-sandbox'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment