How to correctly setup PyDev in NVIDIA Nsight Eclipse version? - pydev

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.

Related

Failing at NetBeans Java Native Packaging for Linux

Doing Linux Native Package builds I'm running into problems with both RPM and DEB. In the case of RPMs, it's saying that rpmbuild cannot be found. Then for DEBs it reports the dpkg cannot be found.
Both dpkg and rpmbuild are installed and are in /usr/bin. Both are in my path and execute fine from CLI. Failure is the same whether I start NetBeans from GUI or CLI. I've even symlinked rpmbuild and dpkg into my NetBeans bin directory. No luck.
How does one go about getting NetBeans to find dpkg and rpmbuild so that it can complete native builds from the GUI? Currently working with SuSE LEAP 15.
For whatever reason, the "Package All Artifacts" option is currently generating .deb and .rpms, but I can't generate them individually. I'm OK with this. I think the most likely change to make that option work was symlinking the binaries from user bin into my netbeans bin.

How to install NVIDIA Nsight Eclipse Edition without CUDA toolkit?

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.

Eclipse doesn't find the installed JREs anymore

My eclipse doesn't find the installed JREs anymore. When trying to set them up I get an error message which I attached as a picture. I am running eclipse on ubuntu 12.04, neither my old Eclipse 3.7.2 nor the just downloaded version 4.2 is working. Same error messages is popping up. I tried to use a different Java version (update-alternatives java), changed from openjdk-6 to openjdk-7, same error. Changed the -vm parameter in the eclipse.ini to the java path (version) I would like to use, but getting still the error. I don't know what else I can try...
Your help is really appreciated.
I have fixed this bug following this answer on ask ubuntu: Just launch a sudo apt-get --reinstall install tzdata-java.

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