netbeans 7.1 and python

試著忘記壹切 提交于 2019-12-05 15:50:18

问题


I used to use my Netbeans 6.9 for Python development. As well as Java and PHP. I had a cool debugger in PHP with xDebug, good Python support. Have no complaints whatsoever. I moved to another computer downloaded the latest netbeans(7.1) and now I have no more python plugin. I tried the solution here but this caused NetBeans not to start at all after the loading splash screen is finished NetBeans crashes.

Is there any way I can still code in Python with netbeans?
Thank you in advance


回答1:


Ok, I fixed this. Say you've screwed up your netbeans installation by installing the pythonplugin then this might just work for you, provided you're using a non-windows OS. This is because Windows uses precompiled binaries to start the Netbeans IDE.

The problem that I solved is that, by default, a set of classes is not added to the Java classpath, which results in a crash. You can find whether this is also your problem by inspecting .netbeans//var/log/messages. If it displays some ClassNotFoundExceptions then we might have the same problem. If not, then at least you've got some pointers on what's going wrong and perhaps you might come up with some solution yourself. ;)

The java classpath is constructed in the file:

/<path>/<to>/<your>/<netbeans>/<installation>/platform/lib/nbexec

On OSX, this could be:

/Applications/NetBeans/NetBeans 7.1.app/Contents/Resources/NetBeans/platform/lib

In the main loop the function construct_classpath is called, which in turn calls the function build_classpath for two directories. I changed the function to this:

build_cp() {
    base="$1"
    append_jars_to_cp "${base}/lib/patches" "patches"
    append_jars_to_cp "${base}/lib" "lib"
    append_jars_to_cp "${base}/lib/locale" "locale"
    # Added by me:
    append_jars_to_cp "${base}/modules/ext" "ext"
}

After that modification, start your IDE and everything should work fine. Good luck!




回答2:


The Solution for this problem could be found here

http://sahanlm.blogspot.com/2012/12/netbeans-7-2-crash-on-start.html




回答3:


I am currently using the developer plugins on Netbeans 7.0.1 with no problem. Maybe they simply aren't compatible with the new version yet. I'd suggest just getting a 7.0 and using that.




回答4:


Add org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar at C:\Program Files\NetBeans 7.1.1\platform\lib\locale. Start NetBeans, remove the plugin or the reference with problem, later on, delete org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar




回答5:


Please see the following link. It works for me:

http://wiki.netbeans.org/PythonInstall




回答6:


Currently your NetBeans/Python choices are:

  • Try the latest development build updates against your current NetBeans version and mess with breakage at times as noted on the PythonInstall NetBeans wiki page or the link you gave.
  • Install the latest development version, but realize it's not a stable public release.
  • Wait for someone in the community to step up with continued development to keep the existing plugin in step with the latest public NetBeans release.
  • Install the NetBeans 6.9 (or older) version you were using with no complaints just for Python work.

I have had success with older versions and the development build. I am dabbling with other Python aware IDEs while I wait for main stream support, but I've stopped holding my breath.




回答7:


If you can't change nbexec, like suggested by Bas Jacobs (e.g. on Windows), or don't want to do that, you can use the --cp:p startup parameter to append the necessary JARs to the classpath.

I only had to add the org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar file, so the complete command line under windows now looks like this:

"C:\Program Files\NetBeans 7.1\bin\netbeans.exe" --cp:a C:\\Users\\_YOUR_USERNAME_\\.netbeans\7.1\modules\ext\org.eclipse.osgi_3.7.1.R37x_v20110808-1106.jar


来源:https://stackoverflow.com/questions/7490181/netbeans-7-1-and-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!