-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f6d73fd
commit 744928b
Showing
1 changed file
with
11 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,14 +30,20 @@ Installing ELM | |
|
||
.. inclusion-install | ||
Option #1 (basic usage): | ||
|
||
#. ``pip install NREL-elm`` | ||
|
||
Option #2 (developer install): | ||
|
||
#. from home dir, ``git clone [email protected]:NREL/elm.git`` | ||
#. Create ``elm`` environment and install package | ||
1) Create a conda env: ``conda create -n elm`` | ||
2) Run the command: ``conda activate elm`` | ||
3) ``cd`` into the repo cloned in 1. | ||
4) Prior to running ``pip`` below, make sure the branch is correct (install | ||
a) Create a conda env: ``conda create -n elm`` | ||
b) Run the command: ``conda activate elm`` | ||
c) ``cd`` into the repo cloned in 1. | ||
d) Prior to running ``pip`` below, make sure the branch is correct (install | ||
from main!) | ||
5) Install ``elm`` and its dependencies by running: | ||
e) Install ``elm`` and its dependencies by running: | ||
``pip install .`` (or ``pip install -e .`` if running a dev branch | ||
or working on the source code) | ||
|
||
|