From 6821c5e69dc735e3241e05a0a87b85294b806c45 Mon Sep 17 00:00:00 2001 From: Katherine Holcomb Date: Fri, 4 Oct 2024 17:21:48 -0400 Subject: [PATCH] Removed broken link to figure that was dropped --- content/courses/python-introduction/packages_environments.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/content/courses/python-introduction/packages_environments.md b/content/courses/python-introduction/packages_environments.md index 9632db6..25ef203 100644 --- a/content/courses/python-introduction/packages_environments.md +++ b/content/courses/python-introduction/packages_environments.md @@ -29,8 +29,6 @@ mamba install newpackage ``` Many more options are available. -{{< figure src="/courses/python-introduction/imgs/Conda.png" caption="Conda from a command line." >}} - ## Environments When you use conda or mamba, you always have an _environment_; the one with which you start is called _base_. An environment is a "bundle" of a Python version, which need not be the same as your base, along with a set of packages installed against that version. Only one environment can be active at a time (for Linux users, in a given shell) but environments can be activated and deactivated at will.