-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImage
file. -
Move the File:
sudo mv ~/Downloads/NAME.AppImage /opt/cursor.appimage
- Install Dependencies (if required):
sudo apt update
sudo apt install libfuse2
- Make it an executable
sudo chmod +x /opt/cursor.appimage
- Create a Desktop Shortcut:
sudo nano /usr/share/applications/cursor.desktop
- Make sure a logo/image available there
/opt/cursor.png
(If needed)
[Desktop Entry]
Name=Cursor
Exec=/opt/cursor.appimage --no-sandbox
Icon=/opt/cursor.png
Type=Application
Categories=Development;
- Run Cursor AI:
/opt/cursor.appimage --no-sandbox
- Optional - Add a Command Alias:
- Add an alias to your
.bashrc
or.zshrc
file for easier command-line access:
alias cursor='~/Applications/your-app.appimage --no-sandbox'