i've installed a python project, and it imports modules(Like almost every project). The problem is when i want to install them(because i haven't got the modules), for example: In the project is imported a module called "a" but when i go and install "a" with pip install a
, it says ERROR: Could not find a version that satisfies the requirement a (from versions: none) ERROR: No matching distribution found for a
. How could i know the name of the module that is imported in that python project?
Edit: btw i just found out the module that the project uses comes in the zip where the python project is. How could i install it so it works?