PyDev 5.3 and Eclipse Neon 4.6 - pydevd.py loacation (OSx) - pydev

I switched from Eclipse Mars to Eclipse Neon today. The Pydev plugin was not installed at the place where it was in Eclipse Mars (/Applications/eclipse/cpp-neon/Eclipse.app/Contents/Eclipse/plugins).
Does anyone know where the pydevd.py is located on OsX.
thanks

The easiest way to know where the PyDev debugger is located is by opening a PyDev editor, writing pydevd and requesting a code completion just showing the templates (ctrl space twice)... A template for creating a programmatic breakpoint will be shown (and it adds the debugger to the PYTHONPATH, so you can see where it's located).

Related

Portable eclipse without java editor

I need to work with eclipse Oxygen (or at least neon), and I do not have administrator rights on my pc.
I downloaded a 64bits portable version of eclipe oxygen (photon) :
https://sourceforge.net/projects/eclipse-neon-portable/
I'm using OpenJdk8 (JDK1.8) also in 64bits.
Here is my problem:
I start eclipse with the path of the 1.8 JDK, but I don't have Java editor.
Indeed I can't open Java view or create a Java project, even the Syntax highlighting colors for .java..
Does the problem come from the Eclipse editor? From the Jdk? From the Eclipse configuration?
I'm open to any new solution!
Thanks in advance.
EDIT: I'm working with the EMF editor and I need the Java one to edit compile the generated java code.

Eclipse kepler full screen mode pulgin?

Is there a plugin to full-creen mode in the Eclipse kepler? I mean I would like to work without command menu, tabs etc. Just only code window increased to full-screen. Is it possible?
Is this what you are looking for?
http://code.google.com/p/eclipse-fullscreen/
There aee few option available for Eclipse full screen feature
http://code.google.com/p/eclipse-fullscreen (As #ConMan answered)
Download jar and put in plugin folder of eclipse
http://marketplace.eclipse.org/content/fullscreen-mode [Plugin on marketplace]
Install from Marketplace or in eclipse Help -> Install New Software
All are working fine on 3.4+ version of eclipse
For OSX Lion,
http://marketplace.eclipse.org/content/full-screen-enabler-eclipse-3637-osx-lion [Plugin on marketplace]
This plugin works for Eclipse 3.6/3.7(Not verified by me)

Jess Editor Plugin not Appearing in Eclipse Luna

I have the Jess DE installed on an old version of Eclipse (Helios), and when I open any of my Jess files there, they are nicely displayed with appropriate colors, etc. I installed a newer version of Eclipse (Luna) in order to install PyDev, and meanwhile added all the Jess editor plugin files. I added them in exactly the corresponding subfolders as my older version of Eclipse, but have had no luck getting those files to open with the right editor. They'll open, but only as plain text, and trying to do an open with does not show the Jess Editor as an option. I restarted Eclipse a couple of times, but no luck. I also tried to follow these instructions:
"Help > Software Updates > Manage Configuration in Eclipse, and enable the JessDE feature"
but that menu doesn't actually seem to appear in Luna. Installation details under the plugins tab also doesn't seem to show the Jess editor.
Any ideas what could be going wrong here? I'd love to have just a single version of Eclipse running on my machine, instead of several...
Thanks!
I have your same problem. In mine Eclipse KEPLER version goes all right, but when I do the SAME installation in LUNA, something goes wrong.
Probably, the last version of JESS (7.1p2) doesn't is compatible with LUNA. I hope not.

Eclipse: no C/C++ option after installing CDT plugin

I use Eclipse to program in Java and , having already familiar with this development environment , I would use it for C/C++ projects.
Version: Eclipse SDK 4.2.2 (Juno)
O.S.: Ubuntu 12.04 LTS
I installed the CDT plugin by following the italian guide of the ubuntu documentation:
http://wiki.ubuntu-it.org/Programmazione/Eclipse#CDT
The only difference is that, at point 4, I have not included the source shown (Galileo), but the my version (Juno)
http://download.eclipse.org/tools/cdt/releases/juno
it's ok, found the source
CDT Main Features
CDT Optional Features
the installation is successful (indeed Eclipse show me CDT as the latest software installed, and an subsequent attempt to reinstall, Eclipse returns an error that it is already installed)
The problem is that when I restart Eclipse , I have no change. For instance , if I open the menu " File -> New -> Other" , I have no additional option to create a new C/C++ project.
I regularly installed on my computer the C/C++ compiler (gcc and g++ , version 4.6.3).
I also tried to install the plugin from the terminal:
sudo apt-get install eclipse-cdt
no change.
I search through the options in Eclipse to see if it was a problem enabling views of items in the menu, but nothing. Even in the "Window -> Preferences" I have no "C/C++" category .
I also changed my workspace ..... nothing .
Please help me, thanks
i had the same issue. i installed the latest eclipse, luna and mars. both had the c/c++ development tools.
my development environment had an older version of java installed, i.e. 1.6. apparently, luna/mars require 1.7 to be installed. i, at first, modified the eclipse.ini file to
-vmargs
-Dosgi.requiredJavaVersion=1.6
i started eclipse and the c/c++ project was not available. so i couldn't create a c/c++ project because it wasn't available in the wizard.
i updated my java to 1.7 on my machine; changed the eclipse.ini file back
-vmargs
-Dosgi.requiredJavaVersion=1.7
then started eclipse. viola. the option to create a c/c++ project is now available.
so basically, it seems that the newer eclipse requires 1.7 java. otherwise, it will disable features.
First of all, you have to open "C/C++ perspective". Try to go to menu "Window--Open Perspective -- Other--C/C++".
When you are in C/C++ perspective you should be able to create a new C/C++ project.
Also if you already have a loaded project, you can to convert to C++ project. Simply select it and then follow the right-click menu: "New" -- "Convert to a C/C++ Project (Adds C/C++ Nature)". Alternatively, simply go to menu File--New--Convert to C/C++ Project and it will show the list of all projects.
But again, the first and major step is to switch to C/C++ perspective.
Good luck!

Eclipse Juno cannot make new project after update

I'm using Ubuntu 12.04, and to install Eclipse Juno I downloaded it from the official site (I don't use apt-get nor software center)
After updating it from help > check for updates menu, my Eclipse cannot make new project. When I hover File > New, there isn't any menu to select (as the usual Java Project, C++ Project etc.), only an unselectable text like this:
< No Applicable Items >
Anyone know what causes this?
nitind's answer above helped solve my problem. I was using eclipse java ide juno on windows and i could not see any items under File -> New or under Window -> Show View. I noticed eclipse had defaulted to using the Java-EE perspective. Following nitind's suggestion I changed it to the Java perspective and can now see all the menu items. thank you!
I had the same error when i first started the program, but i looked into it, and I saw that the workspace already had .cpp and compiled files in it which i had compiled earlier with a different program. To fix the error, I just changed the workspace to the default, and it worked fine.
I was using eclipse CDT Kepler with java 1.6.0_27. I then tried it with java 1.7.0_25 and eclipse Juno and this method resolved the error in any of these instances.
Try using the default workspace and it should work.
Regards,
Nikita