Shiva
Shiva

Reputation: 81

Importing Projects into Eclipse + Python

How to import an Python project not created through Eclipse into Eclipse.

Using Eclipse Luna

-Shiva S

Upvotes: 1

Views: 4757

Answers (2)

Fabio Zadrozny
Fabio Zadrozny

Reputation: 25332

The basic solution is creating a new project (just set the location of the new project to the existing sources).

The FAQ covers that: http://pydev.org/faq.html#PyDevFAQ-HowdoIimportexistingprojects%2FsourcesintoPyDev%3F if you have something more complex you want to do.

Upvotes: 0

user3755008
user3755008

Reputation:

Follow these following steps...

  • First add pydev interpreter in eclipse Follow this link
  • Configure the pydev interpreter windows->preferences->Pydev->Interpreter-Python
  • Then import the project File->import->General->Existing project into workspace

Upvotes: 2

Related Questions