Skip to content

Commit 8dfe97a

Browse files
authored
Merge pull request CiscoDevNet#12 from Alfred-Leech/master
Update README.md
2 parents e2307c9 + 22aa13e commit 8dfe97a

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

netmiko-interface-example/README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,28 @@ Python
2626
* Clone the Python Examples and change into the directory.
2727

2828
```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
3031
cd netmiko-interface-example
3132
```
3233

3334
* Create and activate a virtualenv
3435

3536
```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
3743
source venv/bin/activate
44+
3845
```
3946

4047
* Install the requirements
4148

4249
```bash
43-
pip install -r requirements.text
50+
pip install -r requirements.txt
4451
```
4552

4653
* Run the scripts

0 commit comments

Comments
 (0)