-
Use the Download button on www.cursor.com web site. It will download the
NAME.AppImage
file. -
Copy the .AppImage file to your Applications directory
cd ~/Downloads
mkdir -p ~/Applications
mv NAME.AppImage ~/Applications/cursor.AppImage
- Install libfuse2
sudo apt update
sudo apt install libfuse2
- Make it an executable
chmod +x ~/Applications/cursor.AppImage
- Run
~/Applications/cursor.AppImage --no-sandbox
- Add
cursor
shortcut
Add to .bashrc
or .zshrc
alias cursor='~/Applications/your-app.AppImage --no-sandbox'
works great. If anyone need script use following (i copied from another guy in comminity)
`
#!/bin/bash
installCursor() {
if ! [ -f /opt/cursor.appimage ]; then
echo "Installing Cursor AI IDE..."
[Desktop Entry]
Name=Cursor AI IDE
Exec=$APPIMAGE_PATH --no-sandbox
Icon=$ICON_PATH
Type=Application
Categories=Development;
EOL
}
installCursor
`
run the script by giving chmod +x ./install_script.sh and run ./install_script.sh