DEV Community

Cover image for How to install Cursor IDE on Arch linux
Kosa Matyas
Kosa Matyas

Posted on Edited on

How to install Cursor IDE on Arch linux

How to install Cursor AI on Arch linux? Simple, follow these steps:

1. Go to Cursor's website

2. Press Download for free (it should download an .Appimage file)

3. Navigate to the file and run chmod +x cursor-<version_number>.Appimage to make it executable

4. Run ./cursor-<version_number>.Appimage to make sure it starts

5. If yes, add it to the application list with sudo mv cursor-<version_number>.AppImage ~/opt/cursor.appimage

6. Make a desktop entry for the app

  • sudo nano /usr/share/applications/cursor.desktop
  • CTRL + V this into the file:
  [Desktop Entry]
  Name=Cursor
  Exec=/opt/cursor.appimage
  Icon=/opt/cursor.png
  Type=Application
  Categories=Development;
Enter fullscreen mode Exit fullscreen mode

7. Save the file, move the icon cursor.png of your choice to ~/opt/

8. You are done!

Top comments (8)

Collapse
 
classikh profile image
Charan

You could also try installing from the AUR.
if you are using yay, just do yay -S cursor-bin

Or download and build package from AUR manually.

Collapse
 
charlesbasis profile image
Charles Valerio Howlader

Thanks for sharing!

Collapse
 
avg_arch_enjoyer324 profile image
Piotr Wawrzonowski

Thanks, that worked for me! How to update it in the future?

Collapse
 
kosa12 profile image
Kosa Matyas

I will write a shell script for this, and link it to you!

Collapse
 
kosa12 profile image
Kosa Matyas

dev.to/kosa12/update-cursor-ai-on-... i wrote a blog about it, here you can see it! hope it helps

Collapse
 
avg_arch_enjoyer324 profile image
Piotr Wawrzonowski

Wooooow! Thanks a lot!

Thread Thread
 
kosa12 profile image
Kosa Matyas

No problem, hope it helps! might drop a like? :3

Collapse
 
tuhinbar profile image
Tuhin Bar

Thanks for the help. It is working properly.