Upgrading UVAP
New versions of UVAP are released regularly. You can use the following set of commands to upgrade to the latest version of UVAP:
Ensure you are logged in as
ultinous
. If necessary, log out and log in withultinous
user.Check license validity (in case of offline licensing):
$ grep "Expiration Date" "${UVAP_HOME}/license/license.txt"
Note: The received date must be in the future. If the license has expired, contact support@ultinous.com.
Update helper scripts from GithHub:
$ cd "${UVAP_HOME}" $ git pull
Update Docker images. Run the install script, it collects all Docker images for UVAP:
$ "${UVAP_HOME}/scripts/install.sh"
Update the AI resources. In the following command, substitute
[DOWNLOAD_URL]
with the download URL received fromsupport@ultinous.com
:$ mkdir -p "${UVAP_HOME}/models" $ cd "${UVAP_HOME}/models" $ wget -O - "[DOWNLOAD_URL]" | tar xzf -