From 6a84015b4df9664eabb987ff99c8f302bd479078 Mon Sep 17 00:00:00 2001
From: Adam Caprez <acaprez2@unl.edu>
Date: Mon, 25 May 2020 21:20:17 +0000
Subject: [PATCH] Move login node note up and make it info instead.

---
 .../using_anaconda_package_manager.md            | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/content/applications/user_software/using_anaconda_package_manager.md b/content/applications/user_software/using_anaconda_package_manager.md
index 6d67198d..690257d3 100644
--- a/content/applications/user_software/using_anaconda_package_manager.md
+++ b/content/applications/user_software/using_anaconda_package_manager.md
@@ -94,7 +94,14 @@ If the package is available, this will also display available package
 versions and compatible Python versions the package may be installed
 under.
 
-### Creating Custom Anaconda Environment
+### Creating Custom Anaconda Environments
+
+{{% notice info %}}
+**NOTE:** By default, conda packages are installed in the user's `home` directory.
+Since Crane's `home` directories are not writeable from the worker nodes,
+the commands for installing, adding and removing conda packages shown here
+should be performed on the **login node**, and not as part of an interactive or SLURM job.
+{{% /notice %}}
 
 The `create` command is used to create a new environment.  It requires
 at a minimum a name for the environment, and at least one package to
@@ -122,13 +129,6 @@ Our new environment is now active, and we can use it.  The shell prompt will cha
 
 ### Adding and Removing Packages from an Existing Environment
 
-{{% notice note %}}
-**NOTE:** By default, conda packages are installed in the user's `home` directory.
-Since Crane's `home` directories are not writeable from the worker nodes, 
-the commands for installing, adding and removing conda packages shown here
-should be performed on the **login node**, and not as part of an interactive or SLURM job.
-{{% /notice %}}
-
 To install additional packages in an environment, use the `install`
 subcommand.  Suppose we want to install iPython in our 'mynumpy'
 environment.  While the environment is active, use `install `with no
-- 
GitLab