简体   繁体   中英

PyDev not appearing in Eclipse after install

我有Java版本7并且已经从Eclipse Marketplace安装了PyDev版本3.9但是它没有出现在Eclipse项目的新项目或Windows中。可以请一些人告诉我我需要做什么?

PyDev is not meant to be installed through Eclipse's Marketplace. Follow the instructions at http://pydev.org/manual_101_install.html . Specifically this part

Installing with the update site

Note: Instructions are targeted at Eclipse 3.5 onwards

To install PyDev and PyDev Extensions using the Eclipse Update Manager, you need to use the Help > Install New Software... menu (note that in older versions, this would be the 'Find and Install' menu).

So basically you have to install it using the "Install New Software" menu. It's explained in detail in pydev's own installation manual.

Had this same problem a few days ago. You might have downloaded the wrong version of PyDev for your python version (2.7.5 or something is my python version, but I downloaded PyDev for version 3.xx)

1) Uninstall your current version PyDev

2) you have to install the correct version by using the "Install New Software", then uncheck the "Show only newest software" or whatever it is. Then select the version that matched your python version, and install :)

I had the same problem when installing on Ubuntu 16.04 via the repository. This was because the version it installed was not compatible with the python plug-in from http://www.pydev.org/updates/

Instead of using the older version of both Eclipse and PyDev, I uninstalled Eclipse via the repository by first clicking the 'Install' button, then when it immediately switched to 'Uninstall' I clicked that.

I then went to: http://www.eclipse.org/ and downloaded the recommended gz file. I then unzipped it into my /opt directory. I deleted the file path info from the command below and dragged the file "eclipse-inst-linux64.tar.gz" into terminal so it had the full file path.

sudo tar -xf /path/to/file -C /opt

I then used Nautilus to navigate to my /opt/eclipse-installer folder and double-clicked on the file: eclipse-inst

This ran the installer. I accepted the home directory recommendation. I accepted the offer to open Eclipse.

In Eclipse I went Help --> Market Place and then took the option to install PyDev from there.

Now when I got to Window --> Preferences, the option PyDev exists.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM