marknguy / Federal_DevNet_Express_Q3KSO

0 stars 0 forks source link

Installing "uniq" not specified on command line #1

Open pesawyer opened 7 years ago

pesawyer commented 7 years ago

When creating your Python virtualenv on the Mac, Page 14 of the Module 0 document reference the following to install additional packages. On the command sequence it tells you to enter, the "uniq" application is not specified and would not be installed as a result.

Please make sure to enter the command: "pip install netaddr argparse pyang uniq" in place of the specified command as shown below (note the command string below omits "uniq" but shows uniq being installed).

• Install additional packages into the virtual environment: • (mycode) $ pip install netaddr argparse pyang • Collecting netaddr • Using cached netaddr-0.7.18-py2.py3-none-any.whl • Collecting argparse • Using cached argparse-1.4.0-py2.py3-none-any.whl • Collecting pyang • Using cached pyang-1.7-py2.py3-none-any.whl • Collecting uniq • Using cached uniq-1.2.1.28-py3-none-any.whl • Installing collected packages: netaddr, argparse, pyang, uniq • Successfully installed argparse-1.4.0 netaddr-0.7.18 pyang-1.7 uniq- 1.2.1.28

marknguy commented 7 years ago

Thanks Pete. I've updated the document to reflect your comments. Good catch!