Problem
Installing a conda package using a full filesystem path does not install the dependencies.
Example:
conda install /path-to-package/packagename-version-pythonversion.tar.bz2
Solution
To install dependencies, use the --use-local
flag to install a local package from the ~/pkgs
folder or ~/conda-bld/subdir
folder.
Example:
conda install --use-local packagename
Related article: https://anaconda.zendesk.com/hc/en-us/articles/360023861814-Installing-conda-packages-offline-