Skip to content

Commit 4b8ffd4

Browse files
added instructions on how to set up the development environment (#275)
* added instructions on how to set up the development environment * changes applied
1 parent 3abfce9 commit 4b8ffd4

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,37 @@ Notes:
201201

202202
- The evaluation per horizon is not available for this model, as it is not provided by the open-meteo data.
203203

204+
## Development Environment Setup
205+
206+
To set up the development environment for this project, follow these steps:
207+
208+
1. **Clone the repository:**
209+
```bash
210+
git clone https://github.com/openclimatefix/open-source-quartz-solar-forecast.git
211+
cd open-source-quartz-solar-forecast
212+
```
213+
214+
2. **Create a virtual environment:**
215+
```bash
216+
python3 -m venv venv
217+
source venv/bin/activate # On Windows use `venv\Scripts\activate`
218+
```
219+
220+
3. **Install the required dependencies:**
221+
```bash
222+
pip install -r requirements.txt
223+
```
224+
225+
4. **Run the Jupyter Notebook server:**
226+
```bash
227+
jupyter notebook
228+
```
229+
230+
5. **Open your browser and navigate to:**
231+
```bash
232+
http://localhost:8888
233+
```
234+
204235
## Abbreviations
205236

206237
- NWP: Numerical Weather Predictions

0 commit comments

Comments
 (0)