In cases where we have python code, but no instructions about which packages to install via pip
before running the code, and we run it:
import inception5h
ERROR: Could not find a version that satisfies the requirement inception5h (from versions: none)
ERROR: No matching distribution found for inception5h
Is it safe to guess - i.e. try something like pip install inception5h
or pip install inception
?
I assume that in absence of specific instructions about which package to install, we are simply guessing, since (I think), any package could theoretically have modules of any name (that is, there could be numerous packages with a module named inception5h
).
Is this understanding correct? And are there any clever ways of figuring out which package needs to be installed, preferably without guessing?