Skip to content

Commit d50e1f5

Browse files
committed
bug in last commit on check of climate timesteps
2 parents 3cc4a6a + ba9f0b4 commit d50e1f5

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

doc/docs/01_install.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,44 @@ In order to use the routine to download ERA5 data from the [Google Cloud Storage
5252

5353
Go to [Development page](./08_Development.md)
5454

55+
### Step 1. Clone the repository
56+
57+
Clone the GitHub repo:
58+
59+
```bash
60+
git clone [email protected]:ArcticSnow/TopoPyScale.git
61+
cd TopoPyScale
62+
```
63+
64+
---
65+
66+
### Step 2. Install it in **editable/development mode**
67+
68+
This lets you modify the source code and have changes take effect immediately:
69+
70+
```bash
71+
pip install -e .
72+
```
73+
74+
The `-e` flag means *editable* — for development work.
75+
76+
---
77+
78+
### Step 3. Verify your setup
79+
80+
Check that Python is using your local copy:
81+
82+
```bash
83+
python -m pip show topopyscale
84+
```
85+
86+
You should see something like:
87+
88+
```bash
89+
Location: /home/user/TopoPyScale
90+
Editable project location: /home/user/TopoPyScale
91+
```
92+
5593
## Install Pvlib with SPA C-implementation
5694
By default, TopoPyScale uses the Python Numpy implementatino of Pvlib to compute solar position. The Pvlib library offers multiple method to compute the solar position, with one using a C-implementation. Because of licensing, the C files are not distributed within the Pvlib library. This requries a special manipulation to execute:
5795

0 commit comments

Comments
 (0)