I have an anaconda env with a set of packages. I also have an python project which has an empty venv with python and pip. I need to install some packages from conda's env into an empty project. For example numpy.
But in conda env numpy is a folder with .py files, not a tar.gz archive.
I tried using —no-index —find-links:
C:\empty_proj\Scripts\python -m pip install —no-index —find-links=file:C:/ProgramData/Anaconda3/Lib/site-packages/ numpy
but it was throwing errors:
Looking in links: file:///C:/ProgramData/Anaconda3/Lib/site-packages/
ERROR: Could not find a version that satisfies the requirement numpy (from versions: none)
ERROR: No matching distribution found for numpy