Installation
- 18 Apr 2025
- 2 Minutes to read
- Print
- DarkLight
- PDF
Installation
- Updated on 18 Apr 2025
- 2 Minutes to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback!
Installation VizionViewer™
Windows-x64
- Download the VizionViewer™ installer for Windows.
- Once it is downloaded, run the installer (vizionviewersetup_{version}.exe).
- By default, VizionViewer™ is installed under C:\Program Files\VizionViewer.
Linux-x64
Support Platform:
- General PCs (Ubuntu Desktop 20.04, Ubuntu 22.04)
- UP Squared Pro 7000
Offline Installation
- Download the .deb packages for Ubuntu.
- uncompress and install .deb packages, You can do this either through the graphical software center if available or via the command line using:
tar -xf ./vizionviewersetup_{version}_linux64.tar.xz
sudo apt install ./vizionsdk.deb
sudo apt install ./vizionviewer.deb
- Installing the .deb package will automatically install the apt repository and signing key to enable auto-updating using the system's package manager.
Online Installation
The repository and key can also be installed manually with the following script:
sudo apt-get install wget gpg
wget -qO- https://download.technexion.com/apt/technexion.asc | gpg --dearmor > packages.technexion.gpg
sudo install -D -o root -g root -m 644 packages.technexion.gpg /etc/apt/keyrings/packages.technexion.gpg
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/packages.technexion.gpg] https://download.technexion.com/apt/vizionsdk/ stable main" > /etc/apt/sources.list.d/vizionsdk.list'
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/packages.technexion.gpg] https://download.technexion.com/apt/vizionviewer/ stable main" >> /etc/apt/sources.list.d/vizionsdk.list'
Then update the package cache and install the package using:
sudo apt update
sudo apt install vizionsdk vizionviewer
When using UP Squared Pro 7000, please add Gstreamer library to environment:
export GST_PLUGIN_PATH=/usr/lib/gstreamer-1.0
Linux-ARM64
Requirements:
- GCC >= 11.5 and glibc >= 2.35
Support Platform:
- NVIDIA Jetson (JetPack 6.x or later)
- NXP-i.MX8MM, NXP-i.MX8MQ, NXP-i.MX8MP, NXP-i.MX93, NXP-i.MX95
- TI-TDA4VM
Offline Installation
- Download the .deb packages for Linux-ARM.
- uncompress and install .deb packages, You can do this either through the graphical software center if available or via the command line using:
tar -xf ./vizionviewersetup_{version}_linuxarm64.tar.xz
sudo apt install ./vizionsdk.deb
sudo apt install ./vizionviewer.deb
- Installing the .deb package will automatically install the apt repository and signing key to enable auto-updating using the system's package manager.
Online Installation
The repository and key can also be installed manually with the following script:
sudo apt-get install wget gpg
wget -qO- https://download.technexion.com/apt/technexion.asc | gpg --dearmor > packages.technexion.gpg
sudo install -D -o root -g root -m 644 packages.technexion.gpg /etc/apt/keyrings/packages.technexion.gpg
sudo sh -c 'echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/packages.technexion.gpg] https://download.technexion.com/apt/vizionsdk/ stable main" > /etc/apt/sources.list.d/vizionsdk.list'
sudo sh -c 'echo "deb [arch=arm64 signed-by=/etc/apt/keyrings/packages.technexion.gpg] https://download.technexion.com/apt/vizionviewer/ stable main" >> /etc/apt/sources.list.d/vizionsdk.list'
Then update the package cache and install the package using:
sudo apt update
sudo apt install vizionsdk vizionviewer
Troubleshooting & Migration Notes
Toolchain Compatibility
⚠️ Platforms with older toolchains (e.g., GCC < 11 or glibc < 2.34) are not supported in the current release.
If you are using Jetpack 4.x or Jetpack 5.x, please refer to the VizionViewer Release Note for a compatible version.
Deprecated APT Repository
⚠️ The
stable jetson
APT repository has been deprecated.
Please use thestable main
repository instead, as shown in Online Installation.
Was this article helpful?