Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialnaveen kumar thatikonda
678 PointsWhat is pip
Am not seeing pip on my machine. What is pip ? How can I see it in my machine ?
5 Answers
Jason Anders
Treehouse Moderator 145,859 PointsHey there,
PIP is a package management system for Python, so if you have Python installed on your machine, you should have PIP. I'm only familiar with Mac, so if you are using Windows, it may or may not be the same, I'm not sure.
On a Mac, Python 2.7 is installed by default and uses pip in the command line to install packages for Python. If, you have installed and are using python3 on the Mac, then you need to use pip3 in the command line.
I'm not sure how you would "see it in your machine" as I have never looked. I don't use Python that often, so I just know that pip3 is there.
Hopefully this helps some.
Allison Schaaf
33,322 PointsI just downloaded Python 3.6 from python.org and the latest version of pip was included (you can see in the video at 2:02 when Kenneth gets to the custom install screen, that his 3.5 download also included a pip installation or upgrade).
Make sure you exit() out of the python shell before typing pip3 --version (otherwise you get an error).
Ary de Oliveira
28,298 Pointsnice
Nekia McGee
4,491 PointsIt appears that Kenneth left out the instructions for installing pip :(
I found this command for MAC users to install pip:
$ sudo easy_install pip
Ary de Oliveira
28,298 Pointspip3