如何在 ubuntu 中打开 Eclipse -- tegra 开发包

发布于 2024-12-23 07:46:03 字数 326 浏览 4 评论 0原文

在我的 ubuntu 上安装“tegradevelopmentpack”之后,安装程序为我打开了 eclipse IDE,然后我关闭了,然后发现没有任何快捷方式或任何我可以启动它的东西。

更新:

我遵循“Venzen”解决方案直到步骤 3 并使用过滤命令。这表明有另一个名为“NVPACK”的文件夹位于用户名>; NVPACK>我不知道 eclipse,我一直在终端的“eclipse”中锁定小费。 另外,我还想分享一下我做过的愚蠢的事情;这里发生的事情是我一直在 Windows 文件而不是 Linux 文件中查看 NVPACK 安装文件夹。 (我在 Windows 中使用 ubuntu)。

After i installed "tegra development pack" on my ubuntu, the installation opened eclipse IDE for me and then i closed and then figured out that there isn't any shortcut or anything i could launch it from.

Update:

I followed "Venzen" solution till step 3 and used the filtering command. That showed me that there is another folder named "NVPACK" is located in username > NVPACK > eclipse which I didn't know about, I kept locking tipping in "eclipse" in the terminal.
Also, there is something stupid I did I would like to share; what happened here is that I kept looking at NVPACK installation folder at windows files not in linux files. (I'm using ubuntu in windows).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若水微香 2024-12-30 07:46:03

您可以打开终端并尝试从命令行启动 Eclipse:

$ eclipse

如果这不起作用,则可能意味着 eclipse 二进制文件安装在您的 PATH 之外的某个位置,并且您将不得不寻找它。我不熟悉 Tegra,但这里有一个在 *nix 中查找文件的通用“消除过程”:

  1. 更新定位数据库

    $ sudo Updatedb

  2. 使用 which 命令查询更新的定位数据库

    $ which eclipse

  3. 您现在应该已经找到它了。如果您还没有,一切也不会丢失 - 运行 locate 命令只是为了更好的措施

    $ sudolocate eclipse

locate 可能会输出大量匹配项,因为它会输出与您的任何匹配项搜索词,无论是文件还是文件夹。如果 locate 的输出滚出屏幕,则使用 grep 过滤出仅 eclipse 是文件的匹配项:

$ sudo locate eclipse | grep '.*eclipse

如果这会产生多个匹配项,则选择位于 bin 文件夹中的 eclipse 文件。

如果到目前为止,一个名为 eclipse 的文件尚未显示出来,那么还有 2 个选项 - 长路和短路...

  1. 使用 find 命令
  2. 发布该方法(或源代码) )无论从哪里安装

,请在此处发布,上面的步骤 1-3 不会显示 Eclipse。

如果这会产生多个匹配项,则选择位于 bin 文件夹中的 eclipse 文件。

如果到目前为止,一个名为 eclipse 的文件尚未显示出来,那么还有 2 个选项 - 长路和短路...

  1. 使用 find 命令
  2. 发布该方法(或源代码) )无论从哪里安装

,请在此处发布,上面的步骤 1-3 不会显示 Eclipse。

You could open a terminal and try to launch Eclipse from the command line:

$ eclipse

If this does not work it could mean that the eclipse binary was installed somewhere outside of your PATH and you will have to look for it. I am not familiar with Tegra, but here is a general purpose "process of elimination" to find a file in *nix:

  1. update the locate database

    $ sudo updatedb

  2. use the which command to interrogate the updated locate database

    $ which eclipse

  3. you should have found it by now. If you haven't all is not lost - run the locate command just for good measure

    $ sudo locate eclipse

locate could potentially output lots of matches since it outputs any match to your search term whether its a file or a folder. If the output of locate scrolls off the screen then use grep to filter out only matches where eclipse is a file:

$ sudo locate eclipse | grep '.*eclipse

If this produces several matches then choose the eclipse file which resides in a bin folder.

If, by now, a file called eclipse has not yet shown itself, then there are 2 more options left - a long way and a short way...

  1. use the find command
  2. post the method (or source) from where you installed

either way, kindly post here should steps 1-3 above not reveal eclipse.

If this produces several matches then choose the eclipse file which resides in a bin folder.

If, by now, a file called eclipse has not yet shown itself, then there are 2 more options left - a long way and a short way...

  1. use the find command
  2. post the method (or source) from where you installed

either way, kindly post here should steps 1-3 above not reveal eclipse.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文