Monika
Monika

Reputation: 33

Install sys package: "ERROR: No matching distribution found for sys"

I am trying to install sys package in Python 3.7.4 version using IDLE:

C:\Users\UserName\Downloads>pip install sys

I am getting the following error:

Collecting sys ERROR: Could not find a version that satisfies the requirement sys (from versions: none) ERROR: No matching distribution found for sys

Upvotes: 3

Views: 7362

Answers (1)

codesnerd
codesnerd

Reputation: 1364

You don't need to use the pip install command. sys is part of the standard library, so it is built into Python that you installed. Use import sys in your .py file and run it to see exactly which libraries are giving you the import error.

Upvotes: 6

Related Questions