search
HomeBackend DevelopmentPython TutorialPython automated testing Eclipse+Pydev builds development environment

Python automated testing Eclipse+Pydev to build a development environment

The reason why C# is easy to interest is because after installing Visual Studio, you can easily write directly The program is ready, no configuration is required. For novices, this is a very good "first experience" and will stimulate their confidence and interest.

The configuration of the development environment of some languages ​​is very troublesome, which makes novices feel frustrated. Without a good "first experience", they may be in awe of the language and lose interest.

As a .NET programmer, I am used to Visual Studio. The powerful functions of Visual Studio, such as smart prompts, auto-complete, etc., can greatly reduce our memory and workload. If there were no smart prompts, it would be crazy. Now that I'm older, I can't remember those function names at all, so I have to rely on the IDE's smart prompts.

The first and most important thing to do when learning Python is to choose an IDE, preferably one with functions like Visual Studio.

This article focuses on why you use the Eclipse+pydev plug-in to write Python code, as well as configuring Eclipse+Pydev on Mac and configuring Eclipse+Pydev on Windows

Reading directory

  1. A good IDE at least has these functions

  2. Editor: Python’s own IDLE

  3. Editor: VI

  4. Editor: Eclipse + pydev plug-in

  5. Install Python

  6. Install JAVA JDK

  7. Download Eclipse

  8. pydev plug-in introduction

  9. Install the pydev plug-in in Eclipse

  10. Configure the pydev interpreter

  11. Start writing a code

A good IDE has at least these functions

1. Intelligent prompt, (there is no need to remember the function name, it is already a class library, and it can be called through intelligent prompt, and the function name will not be mistaken.)

2 . Breakpoint debugging (In the process of writing a program, you must be able to set breakpoints, view variables, and execute step by step. This makes it easier to read the code written by others)

3. Auto-complete function (can speed up writing Code speed)

4. Syntax error prompts, (the scripting language is executed step by step, and syntax errors will not be detected until execution. If the IDE can detect syntax errors that occur during the compilation process in time)

5. Easy to read code, (from one file to another, support reading back, view definitions etc.)

Editor: Python’s own IDLE

Simple and fast, when learning Python or writing small software. very useful.

Editor: VI

must be mastered, the universal editor. You can develop many programs, including Ruby and Python. Supports Windows and Mac. 80% of my colleagues use this to write code. Looking at their screens, the screen is full of code, which makes them feel like programmers.

I don’t know why, I’m not very used to it. Maybe it's because I'm used to graphical interfaces like Visual Studio.

But you still need to know the basic operation of this. For example, when you want to edit a file, you can use VI to edit it. Convenient. I am not very used to using VI for large-scale development.

Editor: Eclipse + pydev plug-in

1. Eclipse is an IDE for writing JAVA, so you can It is universal and the learning cost is small. After learning Eclipse, you can write Python or JAVA in the future.

2. Eclipse, powerful.

3. Eclipse is cross-platform and can run on Mac and Windows

Install Python

Download address: http://www.php. cn/

Python has two versions: Python 2 and Python 3. There are some differences in syntax. To be on the safe side, I installed Python 2.7.5

Install JAVA JDK

Download address: http://www.php.cn/

Eclipse You need to install JAVA JDK before you can run it

Download Eclipse

http://www.php.cn/ Download here.

After downloading, unzip and use it directly. Eclipse does not need to be installed.

pydev plug-in introduction

The official website of the pydev plug-in: http://www.php.cn/

Installation in Eclipse pydev plug-in

Start Eclipse, click Help->Install New Software... In the pop-up dialog box, click the Add button. Fill in Name: Pydev, Fill in Location http://www.php.cn/

and then install it step by step. If an error is reported during the installation process. Just reinstall.

Python自动化测试Eclipse+Pydev 搭建开发环境

Python自动化测试Eclipse+Pydev 搭建开发环境

Configure the pydev interpreter

After installing pydev, you need to configure the Python interpreter .

In the Eclipse menu bar, click Windows ->Preferences.

In the dialog box, click pyDev->Interpreter - Python. Click the New button, select the path of python.exe, and it will be displayed after opening A window containing many check boxes will appear. Click OK

If it is a Mac system, click the "Auto Config" button

Python自动化测试Eclipse+Pydev 搭建开发环境

Start writing code

Start Eclipse, create a new project, File->New->Projects... Select PyDev->PyDevProject and enter the project name.

Python自动化测试Eclipse+Pydev 搭建开发环境

New pyDev Package. You can write code.

Python自动化测试Eclipse+Pydev 搭建开发环境

Python自动化测试Eclipse+Pydev 搭建开发环境

The above is the collection of information on building a development environment with Eclipse+Pydev. We will continue to add relevant information in the future. Thank you for your support of this site!

For more articles related to Python automated testing Eclipse+Pydev building a development environment, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to Use Python to Find the Zipf Distribution of a Text FileHow to Use Python to Find the Zipf Distribution of a Text FileMar 05, 2025 am 09:58 AM

This tutorial demonstrates how to use Python to process the statistical concept of Zipf's law and demonstrates the efficiency of Python's reading and sorting large text files when processing the law. You may be wondering what the term Zipf distribution means. To understand this term, we first need to define Zipf's law. Don't worry, I'll try to simplify the instructions. Zipf's Law Zipf's law simply means: in a large natural language corpus, the most frequently occurring words appear about twice as frequently as the second frequent words, three times as the third frequent words, four times as the fourth frequent words, and so on. Let's look at an example. If you look at the Brown corpus in American English, you will notice that the most frequent word is "th

How Do I Use Beautiful Soup to Parse HTML?How Do I Use Beautiful Soup to Parse HTML?Mar 10, 2025 pm 06:54 PM

This article explains how to use Beautiful Soup, a Python library, to parse HTML. It details common methods like find(), find_all(), select(), and get_text() for data extraction, handling of diverse HTML structures and errors, and alternatives (Sel

Mathematical Modules in Python: StatisticsMathematical Modules in Python: StatisticsMar 09, 2025 am 11:40 AM

Python's statistics module provides powerful data statistical analysis capabilities to help us quickly understand the overall characteristics of data, such as biostatistics and business analysis. Instead of looking at data points one by one, just look at statistics such as mean or variance to discover trends and features in the original data that may be ignored, and compare large datasets more easily and effectively. This tutorial will explain how to calculate the mean and measure the degree of dispersion of the dataset. Unless otherwise stated, all functions in this module support the calculation of the mean() function instead of simply summing the average. Floating point numbers can also be used. import random import statistics from fracti

How to Perform Deep Learning with TensorFlow or PyTorch?How to Perform Deep Learning with TensorFlow or PyTorch?Mar 10, 2025 pm 06:52 PM

This article compares TensorFlow and PyTorch for deep learning. It details the steps involved: data preparation, model building, training, evaluation, and deployment. Key differences between the frameworks, particularly regarding computational grap

Serialization and Deserialization of Python Objects: Part 1Serialization and Deserialization of Python Objects: Part 1Mar 08, 2025 am 09:39 AM

Serialization and deserialization of Python objects are key aspects of any non-trivial program. If you save something to a Python file, you do object serialization and deserialization if you read the configuration file, or if you respond to an HTTP request. In a sense, serialization and deserialization are the most boring things in the world. Who cares about all these formats and protocols? You want to persist or stream some Python objects and retrieve them in full at a later time. This is a great way to see the world on a conceptual level. However, on a practical level, the serialization scheme, format or protocol you choose may determine the speed, security, freedom of maintenance status, and other aspects of the program

What are some popular Python libraries and their uses?What are some popular Python libraries and their uses?Mar 21, 2025 pm 06:46 PM

The article discusses popular Python libraries like NumPy, Pandas, Matplotlib, Scikit-learn, TensorFlow, Django, Flask, and Requests, detailing their uses in scientific computing, data analysis, visualization, machine learning, web development, and H

How to Create Command-Line Interfaces (CLIs) with Python?How to Create Command-Line Interfaces (CLIs) with Python?Mar 10, 2025 pm 06:48 PM

This article guides Python developers on building command-line interfaces (CLIs). It details using libraries like typer, click, and argparse, emphasizing input/output handling, and promoting user-friendly design patterns for improved CLI usability.

Scraping Webpages in Python With Beautiful Soup: Search and DOM ModificationScraping Webpages in Python With Beautiful Soup: Search and DOM ModificationMar 08, 2025 am 10:36 AM

This tutorial builds upon the previous introduction to Beautiful Soup, focusing on DOM manipulation beyond simple tree navigation. We'll explore efficient search methods and techniques for modifying HTML structure. One common DOM search method is ex

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software