-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some discussion of HPC specific issues to the teaching guide
- Loading branch information
1 parent
3cf2260
commit 11ae6c7
Showing
3 changed files
with
27 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,26 @@ | ||
--- | ||
title: "Instructor Notes" | ||
--- | ||
FIXME | ||
|
||
## Conda on HPC systems | ||
|
||
Many HPC systems make either Miniconda or Anaconda (or both!) available to users via | ||
[Environment Modules](http://modules.sourceforge.net/). In this case a user will need to load the | ||
relevant module instead of installing Conda. | ||
|
||
~~~ | ||
$ module load miniconda | ||
~~~ | ||
{: .language-bash} | ||
|
||
> ## Avoid running the `conda init` command | ||
> | ||
> Using the `conda init` command is not advisable on HPC systems that use Environment Modules | ||
> to make Miniconda or Anaconda available to users. The reason is that running the `conda init` | ||
> command makes changes to a user's `~/.bashrc` file. If the user subsequently forgets to reverse | ||
> these changes using `conda init --reverse`, then `conda` will still be available even after | ||
> unloading or purging the `miniconda` module. This opens the distinct possibility of a user | ||
> accidently leaving his/her shell environment in an unexpected state. | ||
{: .callout} | ||
|
||
{% include links.md %} |