How to make the conda installer look for PyPi packages

I tried using conda package manager to install Python packages. Recently, I came across the fact that many of the packages I needed were missing from the Anaconda.org repository, and I had to install them. Link: github issues

Is there a way to add a channel to Anaconda that will allow it to search all PyPi packages so I can use "conda" completely instead of switching from time to time to pip

+4
source share
1 answer

According to the skeleton of conda, you can first run

conda skeleton pypi package

conda , PyPi,

conda build package
conda install --use-local package 

!

+3

All Articles