How to run notebooks on Azure ML Studio #63
ryanloney
started this conversation in
Show and tell
Replies: 1 comment
-
Instructions to Run the Notebooks in Azure ML StudioThe steps below assume that you have an Azure account and access to the Azure ML Studio. Step 0: Add a Compute InstanceIn Azure ML Studio, add a compute instance and pick any CPU-based instance (No GPU required). Once the compute instance is running, open the terminal and then run Steps 1-8 below. Step 1: Create a Conda Environmentconda create --name openvino_env python=3.6 -y Step 2: Activate the Environmentconda activate openvino_env Step 3: Clone OpenVINO Notebooksgit clone https://github.com/openvinotoolkit/openvino_notebooks.git Step 4: Change Directory to openvino_notebookscd openvino_notebooks Step 5: Upgrade pip and Install Requirementspython -m pip install --upgrade pip
pip install -r requirements.txt --use-deprecated=legacy-resolver Step 6: Add openvino_env to PATHset PATH="/anaconda/envs/openvino_env/bin;%PATH%" Step 7: Install the virtualenv Kernel in Jupyterpython -m ipykernel install --user --name openvino_env Step 8: Run the Notebooks!To run the notebooks, click on Notebooks and refresh your Files: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wrote a guide that shows how to run OpenVINO Notebooks on Azure ML Studio in the cloud. If anyone uses Azure, please try it out and share feedback.
https://github.com/openvinotoolkit/openvino_notebooks/wiki/AzureML
Beta Was this translation helpful? Give feedback.
All reactions