Skip to content

Latest commit

 

History

History
76 lines (50 loc) · 2.17 KB

README.md

File metadata and controls

76 lines (50 loc) · 2.17 KB

published

image

pyATS DevNet Automation Exchange Submissions

This repository contains all pyATS DevNet Automation Exchange submission.

General Information

Repository content

Requirements

  • Mac OSX, Linux or Windows 10 WSL
  • Python 3.6, 3.7 or 3.8
  • Network connectivity (for downloading PyPI packages)

Preparation Instructions

Step 1: Create a Python Virtual Environment

In a new terminal window:

# go to your workspace directory
# (or where you typical work from)
cd ~/workspace

# create python virtual environment
python3 -m venv pyats

# activate virtual environment
cd pyats
source bin/activate

# update your pip/setuptools
pip install --upgrade pip setuptools

Step 2: Install pyATS & Genie

# install our packages 
pip install pyats[full]

Note:

The install target pyATS[full] performs a full installation, that is, including the core framework pyATS, the standard libraries Genie, and additional components such as RobotFramework support etc.

Step 3: Clone This Repository

# clone this repo
git clone [email protected]:CiscoTestAutomation/DevNetAutomationExchange.git

# cd to the directory
cd DevNetAutomationExchange

and now you should be ready to get going!

More information in guide on how to install it and get started with it.