When I want to install modules to Anaconda, I run conda install
. However, now I have a .tar.gz
file and want to install this. How to do?
There are several way to achieve this, I'm describing one here, which should be relatively straight forward, even if your defualt "python" variable is not anaconda's.
conda info --envs
to see the path where your environment is installed"C:\Program Files\Anaconda3\python.exe"
for example:
C:\Program Files\Anaconda3\python.exe -m pip install c:\mymodule\great.tar.gz
Note that
can be relative, absolute and even an online link.