Installation
Everything you need to know about installation of Supervisely SDK for Python
Last updated
pip3 install superviselypip3 install supervisely==6.73.126 # Remember to replace 6.73.126 with the version you need.pip3 install --upgrade superviselygit clone https://github.com/supervisely/supervisely.git$ curl -OL https://github.com/supervisely/supervisely/archive/refs/heads/master.zipunzip master.zip
cd supervisely-master
python3 -m pip3 install .#!/bin/bash
# learn more in documentation
# Official python docs: https://docs.python.org/3/library/venv.html
if [ -d ".venv" ]; then
echo "VENV already exists, will be removed"
rm -rf .venv
fi
echo "VENV will be created" && \
python3 -m venv .venv && \
source .venv/bin/activate && \
echo "Install requirements..." && \
pip3 install -r requirements.txt && \
echo "Requirements have been successfully installed" && \
deactivatedocker pull supervisely/base-py-sdk:latestdocker pull supervisely/base-py-sdk:6.33.0