DEV Community

Cover image for How to install Cursor in Ubuntu
Yevhen Tienkaiev
Yevhen Tienkaiev

Posted on

How to install Cursor in Ubuntu

Step 1 - download

https://www.cursor.com/downloads

Step 2 - install

Install dependencies:

sudo apt-get install libfuse2
Enter fullscreen mode Exit fullscreen mode

Create a directory for the application to install into:

sudo mkdir /opt/cursor/
Enter fullscreen mode Exit fullscreen mode

Move to downloaded app to folder:

sudo mv Cursor-0.48.7-x86_64.AppImage /opt/cursor/cursor.AppImage
Enter fullscreen mode Exit fullscreen mode

Make app executable:

sudo chmod +x /opt/cursor/cursor.AppImage
Enter fullscreen mode Exit fullscreen mode

Download image for icon:

sudo wget https://raw.githubusercontent.com/getcursor/docs/refs/heads/main/images/logo/app-logo.svg -O /opt/cursor/app-logo.svg
Enter fullscreen mode Exit fullscreen mode

Step 3 - create a link to app

Create a desktop entry:

sudo nano /usr/share/applications/cursor.desktop
Enter fullscreen mode Exit fullscreen mode
[Desktop Entry]
Name=Cursor
Exec=/opt/cursor/cursor.AppImage --no-sandbox
Icon=/opt/cursor/app-logo.svg
Type=Application
Categories=Development;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)