Install PyDev for Eclipse
1. What is PyDev?
PyDev is a Plugin allowing you to install on Eclipse, and you can program Python on Eclipse IDE.
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092305-vi.webp)
2. Requirements
Eclipse is an IDE used to develop Java. However it allow you to install other plugins to become programming tools of other languages such as C/C++, Ruby, Python,...
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092317-vi.webp)
So, in order to program Python, firstly you have to install Eclipse, then install a Plugin named as PyDev on Eclipse. You can see How to install Eclipse here:
3. Installing PyDev
On Eclipse, select:
- Help/Eclipse Marketplace...
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092339-vi.webp)
Enter "PyDev" to search:
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092345-vi.webp)
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092346-vi.webp)
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092347-vi.webp)
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092348-vi.webp)
When being successfully installed, you need to restart Eclipse:
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092354-vi.webp)
Next, you need re-check Eclipse after installing. On Eclipse, select:
- File/New/Other...
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092361-vi.webp)
If you see PyDev on Wizard window, it means that PyDev has been successfully installed on Eclipse.
4. Configuring Interpreter
Python Interpreter is a interpreter used to translate Python code (written by programmer) into computer code. You need to declare it to Eclipse.
On Eclipse, select:
- Window/Preferences
- > PyDev/Interpreters/Python Interpreter
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092387-vi.webp)
Enter the location of file python.exe. The file is in the Python directory that you have already installed.
Note: If you use the Ubuntu OS, you need to enter:/usr/bin/python<version>
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092402-vi.webp)
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092403-vi.webp)
![](https://s1.o7planning.com/web-rs/web-image/en/arf-1092404-vi.webp)
Python Programming Tutorials
- Lookup Python documentation
- Branching statements in Python
- Python Function Tutorial with Examples
- Class and Object in Python
- Inheritance and polymorphism in Python
- Python Dictionary Tutorial with Examples
- Python Lists Tutorial with Examples
- Python Tuples Tutorial with Examples
- Python Date Time Tutorial with Examples
- Connect to MySQL Database in Python using PyMySQL
- Python exception handling Tutorial with Examples
- Python String Tutorial with Examples
- Introduction to Python
- Install Python on Windows
- Install Python on Ubuntu
- Install PyDev for Eclipse
- Conventions and Grammar versions in Python
- Python Tutorial for Beginners
- Python Loops Tutorial with Examples
Show More