Skip to content

Commit 30ad847

Browse files
committed
Fix typo and add python version in setup file
1 parent d8910ee commit 30ad847

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

00_pytorch_fundamentals.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
"| **Reproducibility** | Machine learning is very experimental and since it uses a lot of *randomness* to work, sometimes you'll want that *randomness* to not be so random. |\n",
7373
"| **Running tensors on GPU** | GPUs (Graphics Processing Units) make your code faster, PyTorch makes it easy to run your code on GPUs. |\n",
7474
"\n",
75-
"## Where can can you get help?\n",
75+
"## Where can you get help?\n",
7676
"\n",
7777
"All of the materials for this course [live on GitHub](https://github.com/mrdbourke/pytorch-deep-learning).\n",
7878
"\n",

SETUP.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ cd ztm-pytorch-course
112112
```
113113
3. Create a `conda` environment in the directory you just created. The following command will create a `conda` enviroment that lives in the folder called `env` which lives in the folder you just created (e.g. `ztm-pytorch-course/env`). Press `y` when the command below asks `y/n?`.
114114
```
115-
conda create --prefix ./env python=3.8
115+
conda create --prefix ./env python=3.8.13
116116
```
117117
4. Activate the environment you just created.
118118
```

0 commit comments

Comments
 (0)