π How to Install Cursor on Ubuntu (The Easy Way)
If you're looking for a clean, developer-focused code editor with AI-assisted features, Cursor is gaining a lot of attention β especially for developers working on Linux. While Cursor is distributed as an .AppImage, installing it on Ubuntu is very simple.
This guide walks you through installing Cursor Editor v0.49.6 (or later) on Ubuntu step-by-step.
π§ What Is Cursor?
Cursor is a powerful, AI-integrated code editor based on Visual Studio Code. It comes bundled with built-in Copilot support, AI chat features, and seamless GitHub integration β perfect for modern software development.
π§° Prerequisites
Before we begin, make sure:
You're using Ubuntu 20.04 or later
You have internet access
Youβve downloaded the .AppImage from the Cursor official site
π Step-by-Step Installation Instructions
Download the AppImage
Head over to cursor.sh and download the Linux (AppImage) version. It will be saved in your Downloads folder by default.Open the Terminal and Navigate to the File
bash
cd ~/DownloadsMake the AppImage Executable
bash
Copy
Edit
chmod +x Cursor-0.49.6-x86_64.AppImage
This command grants permission to run the AppImage like a program.Run Cursor
Now launch it:
bash
./Cursor-0.49.6-x86_64.AppImage
No installation needed β it will open directly!
π (Optional) Move Cursor to a Permanent Location
To organize things better:
bash
Copy
Edit
mkdir -p ~/Applications
mv Cursor-0.49.6-x86_64.AppImage ~/Applications/
Now you can run it with:
bash
~/Applications/Cursor-0.49.6-x86_64.AppImage
π (Optional) Add Cursor to Ubuntu Menu
Want Cursor to appear in your "Applications" menu? Do this:
bash
Copy
Edit
nano ~/.local/share/applications/cursor.desktop
Paste the following:
ini
[Desktop Entry]
Name=Cursor
Exec=/home/YOUR_USERNAME/Applications/Cursor-0.49.6-x86_64.AppImage
Icon=utilities-terminal
Type=Application
Categories=Development;
π Replace YOUR_USERNAME with your Ubuntu username.
Save and exit with:
Ctrl+O, Enter to save
Ctrl+X to exit Nano
You should now see Cursor in your Applications menu!
π§ͺ Troubleshooting Tips
AppImage wonβt run? Make sure itβs marked executable.
Permission denied? Use chmod +x again.
Still no icon in the menu? Log out and back in or run update-desktop-database.
β
Final Thoughts
Thatβs it! You now have Cursor running on Ubuntu. Itβs fast, powerful, and comes with AI tools to supercharge your coding workflow.
If you're a developer working on Linux, Cursor is absolutely worth checking out.
Top comments (0)