How To Make "conda" Installer Look For "pypi" Packages
I was trying to use conda package manager to install my Python packages. Recently I encountered that many of the packages that I required were not present in the Anaconda.org repos
According to conda skeleton, you can first run
conda skeleton pypi package
It will generate conda recipe for that package if it is available on PyPi, then
conda build package
conda install --use-localpackage
It will install the package
Enjoy !
Post a Comment for "How To Make "conda" Installer Look For "pypi" Packages"