The March 2024 releases included updates to conda and conda-build! π Both of these have been released to both main
and conda-forge
.
Changes in Conda 24.3.0β
To update conda, run:
conda install -n base conda=24.3.0
The January 2024 releases included updates to four conda community projects: conda, conda-build, conda-libmamba-solver, and conda-index! π Each of these have been released to both main
and conda-forge
.
To update conda, run:
conda install -n base conda=24.1.2
Conda is moving our social media presence from Twitter/X to Mastodon and LinkedIn at the start of 2024. It's past time to move into spaces that are welcoming and more in line with our community values.
Going forward, you can find us at
If you are on either platform then please follow and link to those accounts, or, just use the #conda
hashtag.
We won't close the Twitter account. We will update it to say it is no longer active, and point users to the conda communities on Mastodon and LinkedIn. If you are active on Twitter, we encourage you to also use the #conda
hashtag.
We hope to see you on Mastodon and LinkedIn in 2024!
PS: conda-forge is discussing making the same move.
The November 2023 releases included updates to three conda community projects: conda, conda-build, and conda-libmamba-solver! π Each of these have been released to both main
and conda-forge
.
To update conda, run:
conda install -n base conda=23.11.0
New menuinst
v2 support!
We recently pushed out a new theme to the documentation sites for conda and conda-build. This theme is also available for all conda related projects to use as a Sphinx theme (check out the conda-sphinx-theme project).
Image credit: Mathew Schwartz on Unsplash
conda-libmamba-solver
! π₯³ πβlibmamba
builds on libsolv, a much faster solver from openSUSE. The previous "classic" solver is based on pycosat/Picosat and will remain part of conda for the foreseeable future. A fallback is possible and available.
The September 2023 releases included updates to five conda community projects: conda, conda-build, conda-libmamba-solver, conda-index, and pycosat! π Each of these have been released to both main
and conda-forge
.
To update conda, run:
conda install -n base conda=23.9.0
Conda's default solver will change to conda-libmamba-solver
in a special 23.10.0 release in the near future!
You can already benefit from conda-libmamba-solver
today by configuring your conda installation to use it (e.g. by running conda config --set solver libmamba
).
The current "classic" solver is based on pycosat/Picosat and will remain part of conda for the foreseeable future. A fallback is possible and available.
Additional details on this change as well as the full announcement can be found in the conda 23.9.0 changelog.
Image credit: Yannik Mika on Unsplash
Welcome to the second issue of the conda Community Newsletter! We're excited to bring you the latest updates and insights, packed with valuable information and exciting developments.
In this issue, we've got a diverse range of topics to cover, including Upcoming Events, new tools like conda-store, thought-provoking discussions on conda's free nature, plugin hooks, and intriguing projects like Pandata. Plus, we'll delve into recent releases that promise to enhance your conda experience.
But that's not all! We'll also highlight one job opportunity and share news about recent talks from Travis Hathaway and Bianca Henderson, now available for public consumption.
Image credit: Is conda free?
Hi All,
A new blog post, titled "Is conda
Free?", answers your questions about:
There has been confusion around this since Anaconda introduced its Terms of Service in 2020. I hope the post banishes that confusion (forevermore!). The post is framed as a discussion, introducing why there might be confusion about this topic, and then diving into the details.
Happy reading, and using the conda ecosystem too!
Dave C
PS: If reading the discussion doesn't grab you then go straight the summary and just pretend you read the whole thing.
PPS: Spoiler alert! ... Yes.
Image credit: Kier in Sight Archives on Unsplash
With the latest conda release (23.7.2
at the time this post was written), the ability to define
two new plugin hooks was introduced: "pre command" and "post command". These two new plugin hooks give
plugin authors the ability to execute code before and after conda commands are run. In this blog post,
we provide more details on how and why you may use these to extend the default behavior of conda.