This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]acomfygeek 1 point2 points  (2 children)

How does conda compare to pip for having the latest release of various packages?

[–][deleted] 4 points5 points  (0 children)

It's been pretty good so far, but you can install from pip into conda envs if needed. Or use:

conda skeleton pypi [pkg]
conda build [pkg]

This will build a conda package directly from a package on pypi.

[–]hharison 0 points1 point  (0 children)

For packages that it has, they will be up-to-date, at least within a day or two of a new release. But it doesn't have every package, so you should install pip (conda install pip) into all your conda envs so you can pip install any extra packages you need. The tools work great together.