Is it possible to create a python virtual environment (venv) from the local anaconda repository and add packages from there?
- I have anaconda distribution installed here:
C: \ ProgramData \ Anaconda3
- I want to create a virtual environment for a new project. Here:
C: \ new_project \ venv
- For example, I want to add pandas, numpy to location 2) from location 1) Important! I want to add from the location in point 1). I don't want to connect to the internet.
Is it even possible? If not, how can I create a virtual environment based on the installed anconda packages in the operating system?
I know you can add local libraries via pip, but I don't know how to do that with anaconda.
Maybe there is a standard?