-
Notifications
You must be signed in to change notification settings - Fork 698
AzureML
Samet Akcay edited this page Mar 29, 2023
·
2 revisions
The steps below assume that you have an Azure account and access to the Azure ML Studio. The entire one-time setup process may take up to 20 minutes.
In Azure ML Studio, add a compute instance and pick any CPU-based instance (No GPU required, but we recommend at least 4 CPU cores and 8GB of RAM).
Once the compute instance is running, open the terminal and then run Steps 1-8 below.
conda create --name anomalib_env python=3.8 -y
conda activate anomalib_env
git clone https://github.com/openvinotoolkit/anomalib.git
cd anomalib
python -m pip install --upgrade pip
pip install .[full]
set PATH="/anaconda/envs/anomalib_env/bin;%PATH%"
To run the notebooks, click on Notebooks and refresh your Files:
Note: Please also make sure you are using the 'anomalib_env' environment (not Python 3). That's all :) Happy coding.