Skip to content

Commit 92f88d5

Browse files
committed
Added requirements.txt info
1 parent 35ddb94 commit 92f88d5

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

local-setup.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Running the labs on your own computer
22

3-
We highly recommend using a Visual Studio Codespace for these labs - this setup ensures the correct version of Python and the various packages you will need are installed.
3+
We highly recommend using an Azure Machine learning compute instance for these labs - this setup ensures the correct version of Python and the various packages you will need are installed.
44

55
If you prefer to work on the labs using your own computer, and you have experience configuring Python development environments, you can install the following tools and packages.
66

@@ -11,20 +11,19 @@ If you prefer to work on the labs using your own computer, and you have experien
1111
After installing these tools, you must configure your environment and download the lab files.
1212

1313
1. In Visual Studio Code, install and enable the [Microsoft Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python).
14-
2. In Visual Studio Code, open a Python terminal and use the following `pip` commands to install the required packages in your Python 3.7 environment:
14+
2. In Visual Studio Code, open a Python terminal and use `pip` to install the following packages in your Python 3.7 environment (you can use the `pip install` command to install them individually, or copy the following list into a *requirements.txt* file and use the command `pip install -r requirements.txt` to install them in a single step):
1515

1616
```bash
17-
pip install jupyter
18-
pip install matplotlib
19-
pip install pillow
20-
pip install requests
21-
pip install numpy
22-
pip install pandas
23-
pip install scikit-learn
24-
pip install scikit-image
25-
pip install scipy
26-
pip install torch==1.6.0+cpu torchvision==0.7.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
27-
pip install tensorflow
17+
jupyter
18+
matplotlib
19+
pillow
20+
requests
21+
numpy
22+
pandas
23+
scikit-learn
24+
scikit-image
25+
scipy
2826
```
27+
2928
3. In Visual Studio Code, run the `git clone` command and clone the repo at https://github.com/MicrosoftDocs/ml-basics to your local computer.
3029
4. Open the cloned repo and use the notebooks it contains to complete the labs.

0 commit comments

Comments
 (0)