lukas/ml-class

Pip not installed

davegoldblatt opened this issue · 0 comments

Hi! I cloned the Github repository:

git clone https://github.com/lukas/ml-class.git
and then went on to the next step:

#### Install necessary pip libraries

Unfortunately, pip wasn't installed for some reason.

I resolved this via this Stack Overflow article: https://stackoverflow.com/questions/9780717/bash-pip-command-not-found

Why not just do sudo easy_install pip or if this is for python 2.6 sudo easy_install-2.6 pip?

This installs pip using the default python package installer system and saves you the hassle of manual set-up all at the same time.

This will allow you to then run the pip command for python package installation as it will be installed with the system python. I also recommend once you have pip using the virtualenv package and pattern. :)