Skip to content

Commit d6e210e

Browse files
committed
Added pre-workshop checklist
1 parent 1af01f1 commit d6e210e

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

.DS_Store

6 KB
Binary file not shown.

assets/conda-activate.jpg

20.7 KB
Loading

assets/conda-version.jpg

29.3 KB
Loading

pre-workshop-checklist/README.md

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
## Pre-Workshop Checklist
2+
3+
Before attending the workshop, please ensure that you have the required prerequisites installed and configured properly. Follow the steps below to verify your setup.
4+
5+
### Repository Update
6+
7+
Make sure that you have cloned the repo. You can see instructions on how to do so on the [Getting Started](../README.md#getting-started) section of main page of this repository.
8+
9+
If you have already done that, ensure you have the latest content from the repository.
10+
11+
1. Open your terminal and navigate to the directory where you have cloned the repository.
12+
2. Run the following command to update your remote references:
13+
```bash
14+
git remote update
15+
```
16+
3. Check the status of your branch with this command:
17+
```bash
18+
git status -uno
19+
```
20+
- If your branch is up to date, you will see: ```Your branch is up to date with 'origin/main'.```
21+
- If your branch is not up to date, you will see a message like: ```Your branch is behind 'origin/main' by X commits...```
22+
4. If your branch is behind, update it with:
23+
```bash
24+
git pull
25+
```
26+
27+
### Conda Installation
28+
29+
Verify that Conda is installed and you can activate environments.
30+
31+
1. Check the Conda version:
32+
```bash
33+
conda --version
34+
```
35+
- You should see an output similar to:
36+
```
37+
conda X.Y.Z
38+
```
39+
- Example:
40+
41+
<img src="../assets/conda-version.jpg" alt="Conda version" width="300">
42+
43+
2. Test environment activation:
44+
- Activate the base Conda environment:
45+
```bash
46+
conda activate
47+
```
48+
- You should see `(base)` appended before your username in the terminal.
49+
- Example:
50+
51+
<img src="../assets/conda-activate.jpg" alt="Base Environment Activation" width="300">
52+
- Deactivate the base Conda environment:
53+
```bash
54+
conda deactivate
55+
```
56+
57+
This checklist will help ensure that you have the necessary setup for a smooth workshop experience. If you encounter any issues, please reach out for assistance.

0 commit comments

Comments
 (0)