python 自己有集成的开发环境,但是觉得打开python 文件很不方便。于是使用 eclipse+pydev。
我的环境是 win 7 64bit 的。
网上有篇文章 详细介绍了 “how to configure eclipse for python", 很详细,具体,本文结尾处有转载。
web: http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python-configuration.htm
我在安装 eclipse时与遇到的问题:
1. 从eclipse 官网 下载 64bit 的 classic eclipse. web: http://www.eclipse.org/downloads/
2. 从 orancle 官网下载 Java SDK for windows 64bit,这个一定要和 host OS 的匹配,从网上查找到很多人遇到了是由于 JDK位数与 host OS 位数不同照成的各种问题。
web: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html
这里选择 windows x64.
3. 配置java 环境,如果配置成功的在 cmd 终端输入 java -version 及 javac 命令都有关于 java 版本号及 javac 的usage 信息出来
在 window 的系统环境变量里配置 java 环境:
JAVA_HOME E:\Program Files (x86)\Java_64bit (jdk 安装的根目录)
CLASSPATH .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\dt.jar;%JAVA_HOME%\lib\tools.jar (注意里面有当前目录)
PATH 增加 %JAVA_HOME%\bin
4. 修改eclipse的配置文件, 启动 eclipse
如果eclipse 启动失败,可能是要修改 eclipse 安装根目录下的配置文件要修改:
指定 vm option 为:
-vm C:\Java\JDK\1.6\bin\javaw.exe
or
-vm C:\Development\Java\64bit\jdk1.7.0_09\jre\bin\server\jvm.dll
详见: http://wiki.eclipse.org/Eclipse.ini#-vm_value:_Windows_Example
Contents[hide]
|
Eclipse startup is controlled by the options in $ECLIPSE_HOME/eclipse.ini
. If $ECLIPSE_HOME
is not defined, the default eclipse.ini
in your Eclipse installation directory (or in the case of Mac, the Eclipse.app/Contents/MacOS
directory) is used.
eclipse.ini
is a text file containing command-line options that are added to the command line used when Eclipse is started up. There are many options available, please see here.
Important:
-vmargs
are passed as arguments to the JVM, so all arguments and options for eclipse must be specified before -vmargs
(just like when you use arguments on the command-line)-vmargs
on the command-line replaces all -vmargs
settings in the .ini file unless --launcher.appendVmargs
is specified either in the .ini file or on the command-line. (doc)By default, eclipse.ini
looks something like this (the exact contents will vary based on operating system and which Eclipse package you have):
-startup ../../../plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar --launcher.library ../../../plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.100.v20110502 -product org.eclipse.epp.package.jee.product --launcher.defaultAction openFile -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile -vmargs -Dosgi.requiredJavaVersion=1.5 -XX:MaxPermSize=256m -Xms40m -Xmx512m
Among other things, this sets the heap space to 40MB initially and a maximum of 512MB, and also specifies a maximum PermGen size of 256MB. A max heap of 512MB might be OK for some users, but it's often necessary to bump that value up for large project sets or when some third-party plugins are installed.
One of the most recommended options to use is to specify a specific JVM for Eclipse to run on. Doing this ensures that you are absolutely certainwhich JVM Eclipse will run in and insulates you from system changes that can alter the "default" JVM for your system. Many a user has been tripped up because they thought they knew what JVM would be used by default, but they thought wrong. eclipse.ini lets you be CERTAIN.
The following examples of eclipse.ini
demonstrate correct usage of the -vm option.
Note the format of the -vm option - it is important to be exact:
Here is an example of what eclipse.ini
might look like on a Windows system after you've added the -vm
argument and increased the maximum heap space:
-startup plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar --launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.100.v20110502 -product org.eclipse.epp.package.java.product --launcher.defaultAction openFile --launcher.XXMaxPermSize 256M -showsplash org.eclipse.platform --launcher.XXMaxPermSize 256m --launcher.defaultAction openFile -vm C:\Java\JDK\1.6\bin\javaw.exe -vmargs -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx1024m
Remember that the exact values will differ slightly depending on operating system and Eclipse package.
This is how the -vm
argument might look on Windows (your exact path to javaw.exe
could be different, of course):
-vm C:\Java\JDK\1.6\bin\javaw.exe
This might not work on all systems. If you encounter "Java was started but returned exit code=1" error while starting the eclipse, modify the -vm
argument to point to jvm.dll
(exact path could be different):
-vm C:\Development\Java\64bit\jdk1.7.0_09\jre\bin\server\jvm.dll
This is how the -vm argument might look on Linux (your exact path to java
could be different, of course):
-vm /opt/sun-jdk-1.6.0.02/bin/java
On a Mac OS X system, you can find eclipse.ini
by right-clicking (or Ctrl+click) on the Eclipse executable in Finder, choose Show Package Contents, and then locate eclipse.ini
in the MacOS
folder under Contents
.
To specify Java 6 for OS X:
-vm /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/bin/java
这里也备份下 ”how to configure eclipse for python “ 全文。
http://www.rose-hulman.edu/class/csse/resources/Eclipse/eclipse-python-configuration.htm
Launch Eclipse. A screen like this should appear, where you can choose which workspace to open. (If not, go to File → Switch Workspace → Other
)
Browse the csse120 folder which you created when installing Eclipse. Select "Use this as the default and do not ask again".
If you do, Eclipse will automatically use this workspace next time you open Eclipse. If you want to change the workspace later you can always go to File → Switch Workspace... to be sent back to the Workspace Launcher window.
You should now see Eclipse's Welcome screen:
Click on the arrow on the right to go to the workbench.
This is where you'll do most of your work in Eclipse.
Enter http://pydev.org/updates in the Work with: field.
After several seconds, two options should appear. Select the PyDev for Eclipse option. Do not select the "PyDev Mylyn Integration" flag.
Go to Window → Preferences. In the Preferences window, expand PyDev and select Interpreter-Python.
Click "New..." and type Python32 for the Interpreter name. For the Interpreter executable, browse to your copy of Python (C:\Program Files\Python32\python.exe), and press Open.
Click "OK" and the Selection Needed Window will appear.
Unzip this Preferences for csse120 file, placing its sole unzipped file (EclipsePreference-2011-06.epf) in any convenient location (your desktop, My Documents folder, etc).
Launch Eclipse.
If Eclipse offers to Select a Workspace, browse to C:\EclipseWorkspace\csse120.
If the csse 120 workspace does not appear automatically, choose File → Switch Workspace → Other, and click Next.
Now you are ready to set the preferences for the workspace:
Choose File → Import
In the Import dialog box, select General → Preferences and click Next.
When the Import Preferences dialog opens, select Browse and find the EclipsePreferences-2011-06.epf file that you unzipped and saved above.
Back in the Import Preferences dialog, check Import All, then select Finish.
As before, if the Subclipse Usage dialog makes an appearance, uncheck the box and continue.
Confirm that the installation did not leave behind unintended files by checking if there is:
random .eclipse folder anywhere, possibly in the folder immediately above My Documents.
Any extra users (for example, the installer), in C:\Users
Extra Eclipse workspaces anywhere except for the folders inside C:\EclipseWorkspaces.
Go to Window → Open Perspective → Other and choose PyDev, then click OK. If you look at the upper right corner you will see that the perspective has changed from "Java" to "PyDev".
Perspectives are designed to have the most useful tools within reach for whatever task you are doing (for example writing Java code or writing Python code). If you look in theFile→ New menu you will see that there are different options with the different perspective.
PyDev Perspective | Java Perspective |
As you can see, perspectives greatly affect the look of the Eclipse program.
In the next window that appears, enter the name of your project and select "python" and 3.0"; as the type. Make sure "create default 'src' folder and add it to the pythonpath?" is selected. Click Finish.
If you look at the upper left corner of the workspace (in the Package Explorer view), you should now see your newly created project with a "src" folder inside.
Select the project you just created and go to File → New → PyDev Module. This will launch a new PyDev Module Wizard where you should enter a name for your module and make sure it is in the right location. Leave the Package field blank and select Finish.
Look in the Package Explorer view and you will see an icon of your new file inside the src folder, which Eclipse created when you made the new project before.
The file should be opened in the open space in the center of the workspace-the Editor view. (If not, right click on the greeting.py icon and select Open.) You will see a tab with the name of your file.
Here's a program to greet the world. Simply type print('Hello, World!')
into the file. You may remove the default doc comment or leave it there; Python ignores it.
Right click on the file and select Save (or press Ctrl+S) to save the file.
(A quicker alternative is to right-click on the greeting.py icon, and select Run As → Python Run, or press Ctrl+F11.)
Look at the bottom of your screen at the Console view and you will see the message you told the computer to print.
Congratulations! You have written your first program with Python.