Supervisely SDK CLI
Use Command Line Interface for easy and convenient usage of supervisely functional right inside your console locally and with shell scripts on instance!
Last updated
Was this helpful?
Use Command Line Interface for easy and convenient usage of supervisely functional right inside your console locally and with shell scripts on instance!
Last updated
Was this helpful?
In this tutorial, you will discover how to simplify certain basic functions of Supervisely by automating them with easy-to-use Command Line Interface (CLI) commands.
To use CLI you first need to install latest Supervisely package on your preferred Linux system:
After that, you will be able to use CLI. Learn more about SDK installation
In the following required arguments, replace:
<project-id>
with the ID of the Supervisely project you want to download. Prefixes: -id
, --id
<local-destination>
with the local directory where you want to save the project data. Prefixes: -d
, --dst
Replace: <project-id>
with the ID of the Supervisely project you want to get name. Prefixes: -id
, --id
To export project name right in environmental variable, use the following trick in your shell script:
In the following required arguments, replace:
<local-source>
with the local directory where your project is stored. Prefixes: -s
, --src
<workspace-id>
with the ID of the target Supervisely workspace. Prefixes: -id
, --id
In the following optional arguments, replace:
<project-name>
with the name of the project. By default, it takes the name of the source directory. Prefixes: -n
, --name
In the following required arguments, replace:
<team-id>
with the ID of the actual team. Prefixes: -id
, --id
<remote-source>
with the local directory where the files are located. Prefixes: -s
, --src
<local-destination>
with the remote directory in Team files where you want to upload the files. Prefixes: -d
, --dst
In the following optional arguments, replace:
"<filter-text>"
with the regular expression (f.e. ".jpg$"
) which will filter files in directory. Then, only filtered files will be downloaded. Prefixes: -f
, --filter
Add the -i
flag to ignore and skip if source directory not exists.
In the following required arguments, replace:
<team-id>
with the ID of the actual team. Prefixes: -id
, --id
<local-source>
with the local directory where the files are located. Prefixes: -s
, --src
<remote-destination>
with the remote directory in Team files where you want to upload the files. Prefixes: -d
, --dst
In the following required arguments, replace:
<team-id>
with the ID of the team. Prefixes: -id
, --id
<remote-path>
with the path to the folder in Team files. Prefixes: -p
, --path
In the following required arguments, replace:
<team-id>
with the ID of the team. Prefixes: -id
, --id
<remote-path>
with the path to the file in Team files. Prefixes: -p
, --path
Replace <output-path>
with the path to the output directory. Prefixes: -d
, --dir
Here, we will describe components of following command which releases a private app:
In the following optional arguments, replace:
<app-directory>
with the path to the directory containing the application. By default, it's a current working directory. Prefixes: -p
, --path
<sub-app-directory>
with the path to the sub-app relative to the application directory. By default, it's a current working directory. Prefixes: -a
, --sub-app
<version>
with the version number in the format "vX.X.X". By default, there will be a small increment "0.0.1". Prefix: --release-version
<description>
with the release description (max length is 64 symbols). You will be asked to enter description. Prefix: --release-description
<slug>
with the slug for internal use. A term "slug" stands for a short label or ID that is used to identify a specific item or resource (ann app in our case). Prefixes: -s
, --slug
Add the -y
flag to auto-confirm the release.
To install your own modification or specific version of Supervisely, follow these steps:
requirements.txt
Create file requirements.txt
with necessary dependency:
create_venv.sh
Make shell script create_venv.sh
with instructions on virtual environment installation.
Run script and choose directory with virtual environment. Then, activate your environment (you will see (.venv)
appeared in your console):
Note: to set link to Team files directory at workspace tasks interface, use
See the full on how to add Private Apps using CLI.