Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.71 KB

File metadata and controls

30 lines (24 loc) · 1.71 KB

Running the labs on your own computer

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.

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.

After installing these tools, you must configure your environment and download the lab files.

  1. In Visual Studio Code, install and enable the Microsoft Python extension.
  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:
pip install jupyter
pip install matplotlib
pip install pillow
pip install requests
pip install numpy
pip install pandas
pip install scikit-learn
pip install scikit-image
pip install scipy
pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
pip install tensorflow 
  1. In Visual Studio Code, run the git clone command and clone the repo at https://github.com/MicrosoftDocs/ml-basics to your local computer.
  2. Open the cloned repo and use the notebooks it contains to complete the labs.