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 trialvikas Rai
9,703 PointsHow install time package in pycharm?
i am getting below error while using: pip install time Could not find a version that satisfies the requirement time (from versions: ) No matching distribution found for time
2 Answers
MICHAEL PIE
479 PointsYeah time is already there no need to upload it
When modules dont quiet work in PyCharm, I found out that sometimes if you update pycharm itself as a software it will upload the right module.
But hoestly, pycharm has tons of modules missing like "sendmail" (I couldnt get it to work no matter what). I switched to Microsoft Visual Studio Code which handles modules a lot better and I also use repl.it an online python editor. All together these 3 softwares will give you the ability to test code properly.
KRIS NIKOLAISEN
54,971 PointsFrom stackoverflow
The time module is part of Python's standard library. It's installed along with the rest of Python, and you don't need to (nor can you!) install it with pip.