0% found this document useful (0 votes)
2 views

Installation_Guide_Python

This installation guide provides steps to set up Python, pip, and the behave package for behavior-driven development (BDD). It outlines prerequisites such as ensuring Python and pip are installed, as well as the need for an IDE and basic knowledge of BDD concepts. The guide concludes with steps to create a Python project and install necessary plugins.

Uploaded by

sblr80595
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Installation_Guide_Python

This installation guide provides steps to set up Python, pip, and the behave package for behavior-driven development (BDD). It outlines prerequisites such as ensuring Python and pip are installed, as well as the need for an IDE and basic knowledge of BDD concepts. The guide concludes with steps to create a Python project and install necessary plugins.

Uploaded by

sblr80595
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Installation Guide - Python

Prerequisite :

1. Make sure Python is installed on your machine.

a. Download from - O cial Python website URL


- https://www.python.org/downloads/
.
b. Check if Python is installed
- Run Command on terminal or command prompt

python --version Or python3 --version

2. pip (Python package installer) :

a. Check if pip is installed


- Run Command on terminal or command prompt

pip --version Or pip3 --version

3. Make sure behave is installed on your machine:

a. Install it using below


- Run Command on terminal or command prompt

pip install behave Or Pip3 install behave

4. IDE ( Integrated Development Environment )


NOTE: You can use any IDE like IntelliJ IDEA, Eclipse, Visual Studio, pyCharm etc.

5. Basic understanding of BDD, Gherkin and Cucumber ( Refer to Section 1 for details)
ffi
Steps to Install :

1. Create Python Project using an IDE ( IntelliJ IDEA, Eclipse, Visual Studio , pycharm etc)

2. Make sure behave is installed .

3. Check Gherkin Plugin , if it is not added please add it via marketplace as shown in demo.

You might also like