Since I work offline, I have a local directory that holds a lot of python modules.
Now, I have a project with a requirements.txt file that refers to those files directly, i.e.
E:\\pip\numpy-1.21.2-cp38-cp38-win_amd64.whl
E:\\pip\pandas-1.3.3-cp38-cp38-win_amd64.whl
Now, what I would like to do is change those direct paths to something like
E:\\pip\numpy
E:\\pip\pandas
and have pip find the correct platform & python version of numpy within the different numpy's I have in the local directory.
Is it possible to do so?