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?
requirements.txtfile indicating which packages it relies upon, so that they can be installed by pip at the same time you're installing the main project..pyfiles that are named according to the imports, then what's the problem? Those are internal imports; they're not looking for an external module that you need to install...