DEV Community

Cover image for How to install Cursor the AI- editor on linux
Kamaal Abshir
Kamaal Abshir

Posted on

How to install Cursor the AI- editor on linux

Cursor is an AI-first code editor designed for pair-programming with AI, it is available for download on Linux, Mac, and Windows platforms.
Cursor is built to help developers build software faster and more efficiently.

I installed cursor and used it on my mac it's straight forward how to installed it on mac, but when i tried to install it on Linux Ubuntu it's quite challenging.

how ever after doing some research on the internet i figured it out how to install on Ubuntu Linux here is the steps i did to have cursor working on my machine.

  1. Visit the Cursor website at https://cursor.so and click on the "Download for Linux" button.

cursor download button

  1. Once the download is complete, in your download folder you will have a file that ends with this extension .Appimage

wait what the heck is this extension ".Appimage"

AppImage is a universal software package format that can be installed on Linux without going through the traditional way of installation

  1. Don't click right away, we have to make the file executable, so it can run nicely and smoothly, navigate the Download folder or where you downloaded the cursor app and run this command to make the file executable
chmod +x cursor-0.8.5.AppImage
Enter fullscreen mode Exit fullscreen mode

cursor-0.8.5.AppImage is the file i downloaded from the cursor website yours maybe variant just replace after +x to your file name.

okay, now you have encouter this error, if you don't see any error you can skip step 4

./cursor-0.8.5.AppImage
dlopen(): error loading libfuse.so.2

AppImages require FUSE to run. 
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information
Enter fullscreen mode Exit fullscreen mode

so what the heck is going on ?

The error message indicates that the .AppImage requires FUSE to run, to fix this issue, and fuse it is a mechanism for Unix-like operating systems that allows non-privileged users to create their own file systems without editing kernel code.
This is achieved by running file system code in user space, while the FUSE kernel module provides only a "bridge" to the actual kernel interfaces.

  1. install fuse
sudo apt-get install fuse
Enter fullscreen mode Exit fullscreen mode
  1. once you install the fuse now run again this command
chmod +x cursor-0.8.5.AppImage
Enter fullscreen mode Exit fullscreen mode
  1. nice one more step now you can run .Appimage by typing or by double clicking the cursor file on your download folder
./cursor-0.8.5.AppImage
Enter fullscreen mode Exit fullscreen mode

you can run any time that you need by double clicking the app in your download folder or on your terminal.

How to add cursor app on the installed application list

each time you need to run cursor you have to go download folder and run it from there

so you follow these steps to add the cursor on application list

  1. move the app from the download to opt folder
sudo mv cursor-0.8.5.AppImage /opt/cursor.appimage
Enter fullscreen mode Exit fullscreen mode
  1. Create a desktop entry for Cursor by running the command
sudo nano /usr/share/applications/cursor.desktop
Enter fullscreen mode Exit fullscreen mode
  1. past the follow in the file you've just created
[Desktop Entry]
Name=Cursor
Exec=/opt/cursor.appimage
Icon=/opt/cursor.png
Type=Application
Categories=Development;
Enter fullscreen mode Exit fullscreen mode
  1. save the file
ctl + x  
Enter fullscreen mode Exit fullscreen mode

then

press y 
Enter fullscreen mode Exit fullscreen mode

then

press enter
Enter fullscreen mode Exit fullscreen mode

one last step we have to add any icon you like, to the app so you can differentiate it from other apps since we move the app to opt direcotry,

add .png image to the opt file that is named cursor.png

cusror is working and have custom icon

that is it thanks for reading

Top comments (7)

Collapse
 
akbarsaputrait profile image
Akbar Anung Yudha Saputra

How to update to the latest Cursor?

Collapse
 
mhbaando profile image
Kamaal Abshir

you do the same steps just download the cursor, then move it the existing directory, you don't need t install the Fuse again since you already installed and keep on

Collapse
 
akbarsaputrait profile image
Akbar Anung Yudha Saputra

Hahaha you're right! I just move the newest AppImage to my existing app. Thanks!!

Collapse
 
johannesmichael profile image
johannesmichael

Since Ubuntu 22.04 the installation of Fuse can crash your system (as it did mine, Ubuntu 23). Just install libfuse2.
github.com/AppImage/AppImageKit/wi...

Collapse
 
msaririzki profile image
rizki • Edited

How do you solve the problem after installing the fuse? I've already installed it and after I restarted my Ubuntu system it was damaged and information was like this : Oh no! Something went wrong. A problem occurred and the system could not recover. Please log out and try again.

Collapse
 
daveragos profile image
Dawit Beyene

it working and thanks for that but the icon of the app isnt showing (its transparent)

Collapse
 
mhbaando profile image
Kamaal Abshir

the reason that the icon is not showing is you have to manually assign icon,
see this section on the "How to add cursor app on the installed application list"