I am on windows. I made a venv using virtualenv
python -m venv venv2
And installed packages with pip install NAME
.
Now I am trying to install OSMnx package, but that requires conda. I have already installed anaconda for the system as a whole and added it to PATH.
However I am not sure how I can use it in the virtual environment.
Running command like
conda config --prepend channels conda-forge
yields the error
conda : The term 'conda' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.
So how can I install this conda package in virtual environment?