DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > Python Development in NetBeans IDE

Python Development in NetBeans IDE

Amit Saha user avatar by
Amit Saha
·
Jun. 22, 08 · Java Zone · Interview
Like (0)
Save
Tweet
18.15K Views

Join the DZone community and get the full member experience.

Join For Free
The nbPython project aims to provide support for Python development to NetBeans IDE. Below follow the step-by-step instructions for getting started!

 

 

 

The bits are available (milestone releases) for download now as NetBeans modules (nbms).

Let us get started:

  1. Download/lnstall the M3 NBMs from here.

  2. Fire up NetBeans IDE.

  3. Go to Tools -> Plugins -> Downloaded Tab.

  4. Click on "Add Plugins" and select all the NBM files in the unzipped directory.

  5. Now, you will see all the chosen modules along with their descriptions. You should see something like this:


  6. Press the "Install" button.

  7. Using NetBeans IDE 6.1, I get a dependency error:



  8. Then, I downloaded a latest build NetBeans IDE Build 200806220002 from here and repeated the above steps. This time there was no dependency problem.

  9. You will get a "Validation Warning". Press "Continue":

  10. The installation will continue and will be over without any further user interaction required.

 

Creating a New Python Project

  1. Go to File-> New Project-> Python-> Python Project. Choose a Project Name- say "HelloNbPython". Click on Finish.


  2. A new project gets created and is visible in the Project Explorer window. No default file is created.

  3. Right Click on the project name, and select New-> Empty Python File. Enter a name, say- HelloWorld.


  4. A Python script will be generated for you which will simply print "Hello World".

The project tree is now as follows:

  • HelloNbPython/
    • pyproject/
      • project.properties
    • src/
      • HelloWorld.py

 

Runing a Python Script

  1. Right Click on HelloWorld.py in the project explorer and click "Run Python Script".

  2. First time I did this, I got the following exception message:

    java.io.IOException: Cannot run program "/home/amit/netbeans-dev-200806220002/nbpython/jython-2.5/bin/jython" (in directory "/home/amit/NetBeansProjects/HelloNbPython"): java.io.IOException: error=13, Permission denied

  3. So I checked the file permission of the 'jython' executable:
    • $ ls -l jython
      -rw-r--r-- 1 amit amit 5101 2008-06-22 15:05 jython
    • As you can see there is no executable permission for 'jython' as indicated by the absence of the 'x' flag
    • So, I made the 'jython' executable by: chmod +x jython

  4. Run the script again and you should get "Hello World" in the output window.

 

 

 

Integrated development environment Python (language) NetBeans

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Build a Data Pipeline on AWS With Kafka, Kafka Connect, and DynamoDB
  • Streaming ETL with Apache Kafka in the Healthcare Industry
  • How to Modify Java Command-Line Arguments
  • Revoking Access to JWTs With a Blacklist/Deny List

Comments

Java Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo