Installation
Python setup
The Deepomatic Command-Line Interface requires Python 3.4+. We strongly recommend using a Python version management system.
If you don't have any, you might want to look into Pyenv and Pipenv. You will find a detailed tutorial to get started in:
DeepoCLI module
Once you have set up your Python version management system, all you have to do is specify the corresponding version and install the packages. Below you will find two ways to do it using pip
or pipenv
and pyenv
.
# Install python 3.8+ as an example
pyenv install 3.8.12
# Generate a pipenv environment with the installed python version
pipenv --python 3.8
# Install the stable deepomatic-cli release...
pipenv install deepomatic-cli
# ... or the latest release
pipenv install git+https://github.com/deepomatic/deepocli#egg=deepomatic-cli
# Verify the install with pipenv
pipenv run deepo -h
# Spawn a pre-configured shell and verify the install
pipenv shell
deepo -h
Upgrading
If you want to upgrade your package, simply reinstall with pip
or pipenv
:
# Upgrade DeepoCLI with pipenv to latest version
pipenv update deepomatic-cli
# Upgrade DeepoCLI with pip to latest version
pip install --upgrade deepomatic-cli
# Check the current version
deepo -v
Last updated
Was this helpful?