How to make an existing directory into an eclipse project

前端 未结 10 913
[愿得一人]
[愿得一人] 2020-12-04 10:52

I have a project I am working on. I have decided to try working with it in Eclipse. There is already a directory, under version control where all the code resides. I am havi

相关标签:
10条回答
  • 2020-12-04 11:37

    Use "import - existing projects into workspace". This works for my case.

    0 讨论(0)
  • 2020-12-04 11:39

    Since you are using Django you should first set up PyDev in Eclipse. You can install it from the market. Then you want to configure the PyDev Python interpreters to find your installation of Django (http://pydev.org/manual_101_interpreter.html). Make sure to provide the explicit path to the Django folder if your Django is not installed in the default location.

    Once these things are ready you can select File > New > Other, then select PyDev Django Project from the PyDev sub directory.

    Click next and here is the sweet part: Uncheck 'Use default' (as previously stated) and then find your Django project directory. Be sure to select the right project folder (ie: the folder that contains manage.py). When you have the right folder selected Eclipse/PyDev will recognize that a project already exists and make mention that it will use those files. Click Finish.

    Then there is a DB form that asks about your DB settings. If you already have a settings.py file then this seems to make no changes (as it should not). So fill it in or don't. But this is the last step.

    Then you should be able to view and use your existing project in Eclipse!

    0 讨论(0)
  • 2020-12-04 11:47

    My Method:

    I clone this file to new project directory , and rename Project-Name to my project name, after that i import new files and directory from Eclips

    File Name: .project ( Use Notepad for make this file...select Save as type to All Files (*.*) and write file name like: .project )

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
        <name>Project-Name</name>
        <comment></comment>
        <projects>
        </projects>
        <buildSpec>
        </buildSpec>
        <natures>
        </natures>
    </projectDescription>
    
    0 讨论(0)
  • 2020-12-04 11:52

    It is pretty easy to do. Go to File->New-> Project. In the Project wizard, choose the type of project you want and then be sure to unclick the 'Use default location` checkbox. Browse for your folder in the widget that then becomes enabled. Click finish after that.

    Alternatively, you could create a brand new project workspace in a new location. Then, assuming Java as your project type, you can open up your project properties and add as a source folder your existing directory. To do this, use the 'Link Source' button on the Java Build Path -> Source tab of your Project Properties dialog.

    0 讨论(0)
提交回复
热议问题