How to make "conda" installer look for "PyPi" packages

Senthil Kumaran

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 repository, and I had to pip install them. Ref: github issues

Is there a way to add a channel to Anaconda that will enable it to look for All PyPi packages so that I can use "conda" completely instead of switching over to pip every now and then

Tian Zhang

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-local package 

It will install the package

Enjoy !

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to install PyPi packages using anaconda conda command

From Dev

JSON API for PyPi - how to list packages?

From Dev

JSON API for PyPi - how to list packages?

From Dev

how to see less recent packages on pypi

From Dev

How to install R-packages not in the conda repositories?

From Dev

How to make PyPi description Markdown work?

From Dev

How to make button to look as label?

From Dev

How to make a UITableView look like this?

From Dev

How to make QTabWidget look transparent?

From Dev

How to make a UITableView look like this?

From Dev

How to list the names of PyPI packages corresponding to imports in a script?

From Dev

How to include non PyPi packages for virtualenv requirements file?

From Java

A guide for updating packages on PyPi

From Dev

List PyPI packages by popularity

From Dev

Transfer ownership of PyPI packages

From Dev

How make an installer for a java application?

From Dev

How to make a .crx file installer?

From Dev

How to make child packages in packages on Eclipse?

From Dev

How can I make a QtIFW installer call a utility shipped with the installer?

From Dev

How to Make Ubuntu look like Windows Vista?

From Dev

How to make lookup() look for a larger value?

From Dev

How to make directives look for two parameters?

From Dev

How to make a long SQL string look nice

From Dev

How to make popup look at the centre of the screen?

From Dev

How to make matlab graphs look better

From Dev

How to make a input submit button with flat look?

From Dev

Dont have idea how to make it look like

From Dev

How to make edittext look like a page in android

From Dev

How to make a disabled spinner not to look disabled?

Related Related

HotTag

Archive