Skip to content

Commit

Permalink
Replace bash code blocks with shell.
Browse files Browse the repository at this point in the history
  • Loading branch information
carschno committed Aug 6, 2024
1 parent b048738 commit 72847b6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions learners/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Pip should be available in your system once you installed Python successfully.

### On Linux/macOs

```bash
```shell
python3 -m venv dl_workshop
```

Expand All @@ -38,7 +38,7 @@ python3 -m venv dl_workshop

### On Windows

```bash
```shell
py -m venv dl_workshop
```

Expand All @@ -50,7 +50,7 @@ py -m venv dl_workshop

### On Linux/macOs

```bash
```shell
source dl_workshop/bin/activate
```

Expand All @@ -60,7 +60,7 @@ source dl_workshop/bin/activate

### On Windows

```bash
```shell
dl_workshop\Scripts\activate
```

Expand All @@ -74,7 +74,7 @@ Remember that you need to activate your environment every time you restart your

### On Linux/macOs

```bash
```shell
python3 -m pip install jupyter seaborn scikit-learn pandas tensorflow
```

Expand All @@ -88,7 +88,7 @@ This is not supported by the standard TensorFlow installation, and not required

Nevertheless, you can install the on top of the standard `tensorflow`:

```bash
```shell
python -m pip install tensorflow-metal
```

Expand All @@ -99,7 +99,7 @@ python -m pip install tensorflow-metal

### On Windows

```bash
```shell
py -m pip install jupyter seaborn scikit-learn pandas tensorflow
```

Expand Down

0 comments on commit 72847b6

Please sign in to comment.