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 trialMateo Rial
3,694 PointsSorry ... but I have no idea how to install PYTZ ...any help?
I installed python 3.5 at windows 10
1 Answer
Ryan S
27,276 PointsHi Mateo,
If you are running python on your local machine, then in your command prompt you would type:
>>> pip install pytz
I'm not sure if you are familiar with virtual environments or not, but Treehouse has a helpful video on setting one up for Python: Setting up a local Python Environment
These are helpful for keeping all of these package installations contained within a specific project, rather than installing everything globally. It's not absolutely necessary, but it can be very useful for making sure each project you are working on uses only what it needs.
Hope this helps.