Skip to content

Commit

Permalink
Fix typo and add python version in setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
Kshitij68 committed May 10, 2023
1 parent d8910ee commit 30ad847
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 00_pytorch_fundamentals.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
"| **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",
"| **Running tensors on GPU** | GPUs (Graphics Processing Units) make your code faster, PyTorch makes it easy to run your code on GPUs. |\n",
"\n",
"## Where can can you get help?\n",
"## Where can you get help?\n",
"\n",
"All of the materials for this course [live on GitHub](https://github.com/mrdbourke/pytorch-deep-learning).\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ cd ztm-pytorch-course
```
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?`.
```
conda create --prefix ./env python=3.8
conda create --prefix ./env python=3.8.13
```
4. Activate the environment you just created.
```
Expand Down

0 comments on commit 30ad847

Please sign in to comment.