lukas / ml-class

Machine learning lessons and teaching projects designed for engineers

Home Page:https://www.youtube.com/channel/UCBp3w4DCEC64FZr4k9ROxig

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pip not installed

davegoldblatt opened this issue · 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. :)