完全卸载后无法安装 c++ eclipse indigo

完全卸载后无法安装 c++ eclipse indigo

我之前已在 Ubuntu(虚拟机)中使用以下命令成功安装了 Indigo eclipse:

sudo apt-get install eclipse
sudo apt-get install eclipse-cdt

但是,当我从“安装新软件”选项卡进行更新时,它就变得一团糟。运行以下命令后,我完全删除了 eclipse。

sudo apt-get remove --purge eclipse
sudo apt-get autoremove
sudo rm -rf /usr/bin/eclipse /usr/lib/eclipse/ /usr/share/eclipse /usr/share/man/man1/eclipse.1.gz /etc/eclipse.ini

但是,现在我想再次在 Ubuntu 中安装 eclipse。当我运行上述命令时,它根本运行不顺利,并停止在以下执行中:

milind@milind-VirtualUbuntuOneiric:~$ sudo apt-get install eclipse
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following NEW packages will be installed:
  eclipse
0 upgraded, 1 newly installed, 0 to remove and 147 not upgraded.
Need to get 0 B/17.3 kB of archives.
After this operation, 131 kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  eclipse
Install these packages without verification [y/N]? y
Selecting previously deselected package eclipse.
(Reading database ... 133931 files and directories currently installed.)
Unpacking eclipse (from .../eclipse_3.7.0-0ubuntu1_all.deb) ...
Setting up eclipse (3.7.0-0ubuntu1) ...
milind@milind-VirtualUbuntuOneiric:~$ 

尝试了很长时间(重启了 VBox 很多次),但还是没成功。你能帮我解决一下吗:

  1. 如何像之前一样从命令行安装 C++ 的 eclipse(我认为是 indigo)?
  2. 如果命令行不起作用,那么可以到哪个最新的 C++ eclipse 网站获取它?
  3. 如何为这个 eclipse 安装适当的 CDT 以便它可以很好地用于调试(这是我的根本问题)?

答案1

Eclipse IDE 的优点在于您无需安装它。下载 Eclipse 后,您会得到一个 zip 文件,您可以将其解压到主目录中的某个位置,然后从该目录执行它。
如果您访问Eclipse 下载站点您将看到一个可用包列表,您可以在其中选择面向 C/C++ 开发人员的 Eclipse IDE(32/64 位)并下载 zip 文件。

您还将获得最新版本(v3.7.2),它比您在存储库中找到的版本更新。

答案2

我所做的是:下载 Eclipse中部夏令时间从 Eclipse 主页将其解压到文件夹 X 中。从文件夹 X 打开 Eclipse,选择工作区文件夹即可。

相关内容