1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
# Installation
## Standard Installation
As outlined in the quick start, you should be able to pip install scrapli replay "normally":
```
pip install scrapli-replay
```
## Installing current master branch
To install from the source repositories master branch:
```
pip install git+https://github.com/scrapli/scrapli_replay
```
## Installing current develop branch
To install from this repositories develop branch:
```
pip install -e git+https://github.com/scrapli/scrapli_replay.git@develop#egg=scrapli_replay
```
## Installation from Source
To install from source:
```
git clone https://github.com/scrapli/scrapli_replay
cd scrapli_replay
python setup.py install
```
|