File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
netmiko-interface-example Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -26,21 +26,28 @@ Python
26
26
* Clone the Python Examples and change into the directory.
27
27
28
28
``` bash
29
- git clone https://github.com/CiscoDevNet/python_code_samples_network
29
+ git clone https://github.com/CiscoDevNet/python_code_samples_network.git
30
+ cd python_code_samples_network
30
31
cd netmiko-interface-example
31
32
```
32
33
33
34
* Create and activate a virtualenv
34
35
35
36
` ` ` bash
36
- virtualenv venv --python=python3
37
+ Windows - recommendation to use git-bash terminal
38
+ py -3 -m venv venv
39
+ source venv/Scripts/activate
40
+
41
+ MacOS or Linux
42
+ python3.6 -m venv venv
37
43
source venv/bin/activate
44
+
38
45
` ` `
39
46
40
47
* Install the requirements
41
48
42
49
` ` ` bash
43
- pip install -r requirements.text
50
+ pip install -r requirements.txt
44
51
` ` `
45
52
46
53
* Run the scripts
You can’t perform that action at this time.
0 commit comments