I have read this answer already regarding installing a Python package with a wheel file.
However, I have been asked to install a set of packages. These are all in a folder and include several whl files, one tar file and one tar.gz file .
I am trying to figure it out how should I install these.
Something along the lines of
pip install --user --no-index --find-links <the folder name> <a package????>
It is a set of packages so I am not sure how to put that in there. Or should I just stop at <the folder name>
?