-
Notifications
You must be signed in to change notification settings - Fork 881
AzureML
Ryan Loney edited this page May 7, 2021
·
37 revisions
See instructions to add an Azure compute instance, then pick any CPU-based instance (No GPU required). Once the instance is running, open the terminal and run the steps below.

For OpenVINO Notebooks, we recommend using virtualenv instead of Anaconda
conda deactivate
sudo apt install python3-venv
cd ~
python3 -m venv openvino_env
source openvino_env/bin/activate
To access notebooks from the web console, they must be in the Users folder
cd ~/cloudfiles/code/Users
git clone https://github.com/openvinotoolkit/openvino_notebooks.git
cd openvino_notebooks
# Upgrade pip to the latest version.
# Use pip's legacy dependency resolver to avoid dependency conflicts
python -m pip install --upgrade pip
pip install -r requirements.txt --use-deprecated=legacy-resolver
python -m ipykernel install --user --name openvino_env
To run the notebooks, click on Notebooks and refresh your Files:
Select a notebook:
Then run all cells:
© Copyright 2018-2023, OpenVINO team