Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 492
Monika Avatar asked Mar 20 '26 23:03

Monika


1 Answers

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.

like image 106
codesnerd Avatar answered Mar 24 '26 13:03

codesnerd



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!