How to install NVIDIA Nsight Eclipse Edition without CUDA toolkit? - eclipse

I would like to install NVIDIA Nsight Eclipse Edition on Ubuntu without installing unneeded dependencies from the CUDA toolkit.
I know that nsight uses nvvc and some other libraries from the toolkit, but would that be possible to have a minimal copy of nsight without having to duplicate ALL of the cuda system repository ?

If you are on Ubuntu you can install it like sudo apt-get install nvidia-nsight and I think this gives you just nsight eclipse edition.
Another approach would be to take a copy of nsight from a full cuda install and then uninstall cuda. I just looked under /usr/local/cuda/libnsight and this looks like a full eclipse install folder. Maybe just copy this directory to somewhere else, and remove /usr/local/cuda.

Related

How to correctly setup PyDev in NVIDIA Nsight Eclipse version?

In Ubuntu 16.04(64 bit), I've installed the cuda 7.5 and it has an internal NVIDIA Nsight Eclipse. Now I want to install the PyDev plugin into it. But it seems not working. The PyDev is not shown in the IDE.
So I searched in Google, it returns one solution in here, it can be worked. But in that way I have to using the sudo command.
Is there any more convenient way to successfully install the PyDev into Nsight?
Finally, I found one solution.
Download PyDev-2.8.2.zip and decompress it into the corresponding directories of /usr/local/cuda-7.5/libnsight/.
sudo chmod 777 /usr/local/cuda-7.5 -R
Then, when you rerun the nsight, the PyDev will be loaded and it works OK.

Eclipse version for python develpment

What is the most clean Eclpse distro to use for python development?
All distro comes with Java plugin and other stuffs.
I just want a clean Eclipse distro + pydev.
For a pre-configured environment, see http://www.liclipse.com (note it's commercial -- and has other niceties).
Aside from it, the option is getting the Platform Runtime Binary and follow the instructions from http://pydev.org/download.html and http://pydev.org/manual_101_root.html to install PyDev.

What is the yum command to install Eclipse Indigo for Java EE developers?

I want to install Eclipse Indigo for Java EE developers in CentOS through yum command.
yum install eclipse ...
What is the exact command?
Download the Eclipse archive from the Eclipse website. Unpack it in a suitable location. The unpacked directory tree includes the executable. It is not packaged using RPM. The RedHat (and other O/S) provided versions are usually very old and do not include the Java EE Eclipse modules.
yum install eclipse-platform
for the latest eclipse version :)
If you want JEE you can install the plugin afterwards
Edit:
For CentOS 8 you have to enable the eclipse module and install the package:
dnf module enable eclipse
dnf install eclipse
CentOS 6 includes Eclipse 3.6.1 (Helios) so it's not possible to install Eclipse 3.7 (Indigo) through Yum.
You can either install it manually like Raedwald explained OR you could use Fedora 16 which ships Indigo.
Since RHEL/CentOS is very conservative regarding software versions, I wouldn't expect Indigo to be supported any time soon.
Like the others have answered, you need to install it manually if your yum doesn't have it.
This is the guide I used to do this: http://www.if-not-true-then-false.com/2010/linux-install-eclipse-on-fedora-centos-red-hat-rhel/
I used it with Fedora 17 which supports Eclipse 4.2 (juno) instead of 3.7 (indigo).
To run them side-by-side you can first install the yum version, then rename /bin/eclipse and /usr/share/applications/eclipse.desktop to something you want like eclipse-yum then update eclipse-yum.desktop to reference eclipse-yum
Finally, install it as the guide explains.

A good Eclipse for PHP in Ubuntu 11.10 tutorial

Well I´m just moving in to Linux, so I´m using Ubuntu, I installed Ubuntu 11.10, so I was wondering if anyone can give me a hand on how to install succesfuly Eclipse to develope in PHP, I used to use Eclipse Helios (Windows 7), but helios is not inside Ubuntu´s repository, so I guess I´ll have to try it manually. Still prefer to download it from repository not so good with command lines.
Anyone knows a good tutorial?, I´m a newbie in linux so please be very descriptive.
This is an older thread so don't know whether this is still helpfull. Why do you need helios? If you go to the help -> install new software in eclipse then select indigo update site end search for pdt (php development kit). Then install and restart afterwards and their you have a php-perspective with pretty much everything you will need.
Welcome to ubuntu. Their forums are very good as well. To get started you should always use Synaptic or Aptitude APT to get and install packages (software) in Ubuntu. That way the system knows and tracks release and upgrade info.
So open Synaptic and search for Eclipse.. Check it "Marked for Installation" and apply it. It will then install the Eclipse distro for your release. From there it is the same as windows in terms of configuring and installing plug-ins, etc.. It will be installed in "Applications -> Programming"
There is also a Software Center in Ubuntu that may also have Eclipse and other dev tools. You may also need to install "server headers" in you Ubuntu environment to get the dev-tools. I am not sure in 11.10

Eclipse C++ On Ubuntu installation Process

I am now working on a data transfer project under Linux.
The Project Team choose putty to login in linux server via vim to development, But I think the efficiency is too low.
Now I choose Eclipse for C++, and distributor the version "eclipse-cpp-helios-linux-gtk.tar.gz" on Ubuntu.
However, I encountered a problem: My Linux system should install jre1_5_0_09linuxi586, but I can not find it on web.
Can anybody help me on how to install Elipse for C++ on a cleanup linux OS?
What I need is Eclipse for C++ running gdb and compiling on IDE, thanks!
Your question is difficult to understand, but if I'm reading it correctly, you're trying to install the Java Runtime Environment and Eclipse Helios for C++ on Ubuntu.
The easiest way to install the JRE is to use the packages in the "partner" repository:
Edit /etc/apt/sources.list:
sudo -e /etc/apt/sources.list
You should see a few lines that end with the word "partner." Remove the hash marks from the front of each of these lines.
deb http://archive.canonical.com/ubuntu lucid partner
deb-src http://archive.canonical.com/ubuntu lucid partner
Now update your package list and install the Sun Java Runtime:
sudo apt-get update
sudo apt-get install sun-java6-jre
Then you can unzip the Eclipse tarball and run the eclipse binary from inside the tarball:
tar -zxf eclipse-cpp-helios-linux-gtk.tar.gz
./eclipse
You can:
download a JRE or JDK version on the Oracle site or use the process "How to Install Java Runtime Environment (JRE) in Ubuntu"
Follow for instance those installation instruction
use the right eclipse.ini to launch your eclpise
Download page of Eclipse Helios (http://www.eclipse.org/downloads/packages) gives 2 good alternatives for C++ developers on Linux:
A) Eclipse IDE for C/C++ Developers, 87 MB without LinuxTools
B) Eclipse IDE for C/C++ Linux Developers, 120 MB with inbuilt LinuxTools like valgrind, gprof, systemtap etc.
C) Installing/Updating LinuxTools using UpdateManager (Note: You may need to do a Java6 JRE update as described below first.)
D) Updating Eclipse Helios CDT with UpdateManager
E) Helios Installation how-to
F) Java6 JRE update:
apt-get install sun-java6-jre
G) Unzip the Eclipse tarball and run the eclipse binary from inside the tarball:
tar -zxf eclipse-cpp-helios-linux-gtk.tar.gz && ./eclipse
For related info click here