File: installation.md

package info (click to toggle)
python-scrapli-replay 2023.7.30-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 456 kB
  • sloc: python: 2,625; makefile: 43
file content (39 lines) | stat: -rw-r--r-- 682 bytes parent folder | download
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
```