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 trial

Python Graphs and Charts

hello, I wrote "pip3 install, numpy , bokeh". and it wrote me "pip 3 is not recognized as an internal \ external command

what should I do?

2 Answers

My guess is you are using windows?

Unix systems require it to be specified as pip3, as their default installer, pip, corresponds to python 2.

On windows your default is likely python 3, and so your system variable will be just pip.

re-enter the command using pip instead of pip3 and it should work.

If you are on windows you likely need to add the python and python/scripts path to you windows env settings. The python/scripts dir is the important one for pip or other packages (pip3 may also be there)