Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ PhD mathematician turned ML engineer Tivadar Danka—known for his intuitive tea
You can run these Jupyter notebooks on remotely on cloud platforms like Google Colab, or locally on your machine. If you decide to run them virtually, you should create a virtual environment first:

```
virtualenv .venv
python -m venv .venv
```
The above command uses built-in `venv` python module. The `venv` module is the recommended way to create virtual environments in modern Python (3.3+), and it's already included with your `Python` installation.

After the enviromnment is created, activate it and install the required Python packages.

Expand Down