From 5459bfeb8df0c34ec3ec2a07867de10ac870e46d Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Tue, 17 Sep 2024 09:46:30 -0500 Subject: [PATCH] Remove out-dated tip --- docs/user/tipsandtricks.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/user/tipsandtricks.md b/docs/user/tipsandtricks.md index 05d7716a63..b723ee8956 100644 --- a/docs/user/tipsandtricks.md +++ b/docs/user/tipsandtricks.md @@ -71,17 +71,6 @@ channels: In addition to the channel priority, we recommend always installing your packages inside a new environment instead of the `base` environment from anaconda/miniconda. Using envs make it easier to debug problems with packages and ensure the stability of your root env. -:::note - -In the past conda-forge used to vendorize some of `defaults` dependencies that were not built in our infrastructure, -like compilers run-times, to avoid the mixing channel problem. -However, with the `strict` option, we no longer have to vendorize those (this led to its own set of problems), -instead, we removed everything that is not built in conda-forge and let `strict` pull those from `defaults`. - -TL;DR if you are experiencing missing compilers run-times like `libgcc-ng`, -that is probably because you removed `defaults`, -just re-add it and activate `strict` for a smooth and stable experience when installing packages. - :::