ubuntu安装cursor先要安装一个fuse,这里一定要装libfuse2,装fuse的话直接挂了sudo apt-get install libfuse2去下一个cursor:wget https://downloads.cursor.com/production/client/linux/x64/appimage/Cursor-0.46.11-ae378be9dc2f5f1a6a1a220c6e25f9f03c8d4e19.deb.glibc2.25-x86_64.AppImage移动到/opt文件夹mv Cursor-0.46.11-ae378be9dc2f5f1a6a1a220c6e25f9f03c8d4e19.deb.glibc2.25-x86_64.AppImage /opt/Cursor.AppImage改一下权限sudo chmod +x /opt/cursor.appimage写一个启动脚本nano cursor.sh内容如下:#!/bin/bash
/opt/cursor.appimage --no-sandbox给他一个运行权限chmod +x curs...
