Python Forum

Full Version: Installing time module
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
time is in the Python Standard Library then there is no install.
Thanks , I figured that out after posting. Thanks for your time.

LZ