Python Forum
Installing time module - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Installing time module (/thread-34779.html)



Installing time module - Led_Zeppelin - Aug-31-2021

When I try to install time, I get the following output:

Output:
pip install time ERROR: Could not find a version that satisfies the requirement time (from versions: none) ERROR: No matching distribution found for time (base-dup) C:\Users\james\Downloads>conda install time Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting package metadata (repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. PackagesNotFoundError: The following packages are not available from current channels: - time Current channels: - https://repo.anaconda.com/pkgs/main/win-64 - https://repo.anaconda.com/pkgs/main/noarch - https://repo.anaconda.com/pkgs/r/win-64 - https://repo.anaconda.com/pkgs/r/noarch - https://repo.anaconda.com/pkgs/msys2/win-64 - https://repo.anaconda.com/pkgs/msys2/noarch To search for alternate channels that may provide the conda package you're looking for, navigate to https://anaconda.org and use the search bar at the top of the page.
This is not the only module that will not install with either pip or conda. The modules sys, os and warnings also give the same error when I try t o install them.

How do I fix this?

Respectfully,

LZ


RE: Installing time module - snippsat - Aug-31-2021

time is in the Python Standard Library then there is no install.


RE: Installing time module - Led_Zeppelin - Aug-31-2021

Thanks , I figured that out after posting. Thanks for your time.

LZ