Command 'gedit' not found, but can be installed with: sudo apt install gedit
时间: 2023-08-08 10:08:56 浏览: 313
这个错误表示您尝试在命令行中运行gedit,但是您的系统上没有安装gedit编辑器。您可以通过运行以下命令来安装gedit:
```
sudo apt install gedit
```
这将使用apt-get包管理器安装gedit编辑器。安装完成后,您应该能够在终端中运行gedit并打开文本编辑器。
相关问题
gedit not found
The error message "gedit not found" typically indicates that the gedit text editor is not installed on your system or the system cannot find the gedit executable file. To fix this issue, you can try installing gedit using your package manager. In Ubuntu or Debian, you can run the following command in the terminal:
```
sudo apt-get install gedit
```
If you are using a different Linux distribution, you can search for the gedit package in your package manager and install it from there.
阅读全文