VIPM Preview
VIPM previews give you early access to upcoming features before they're included in a stable release.
Preview Documentation
Full documentation for preview features is available at docs.vipm.io/preview.
Installation
Windows
- Download the Windows installer
-
Or install via command line:
Silent install — PowerShell:
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri "https://packages.jki.net/vipm/preview/vipm-setup-latest-preview.exe" -OutFile "$env:TEMP\vipm-setup.exe"; Start-Process -Wait -FilePath "$env:TEMP\vipm-setup.exe" -ArgumentList "/exenoui /qn"; Remove-Item "$env:TEMP\vipm-setup.exe" -ForceSilent install — cmd.exe:
curl.exe -L https://packages.jki.net/vipm/preview/vipm-setup-latest-preview.exe -o %TEMP%\vipm-setup.exe && start /wait %TEMP%\vipm-setup.exe /quiet /norestart && del %TEMP%\vipm-setup.exeInteractive install — PowerShell:
$ProgressPreference = 'SilentlyContinue'; Invoke-WebRequest -Uri "https://packages.jki.net/vipm/preview/vipm-setup-latest-preview.exe" -OutFile "$env:TEMP\vipm-setup.exe"; Start-Process -Wait -FilePath "$env:TEMP\vipm-setup.exe"; Remove-Item "$env:TEMP\vipm-setup.exe" -ForceInteractive install — cmd.exe:
Linux
Debian-based (Ubuntu, Debian, Linux Mint, and derivatives)
- Download .deb package
-
Or install via command line:
Red Hat-based (RHEL, Fedora, CentOS, Rocky Linux, and derivatives)
- Download .rpm package
- Or install via command line:
- RHEL 8+ / Fedora / Rocky Linux / AlmaLinux (dnf):
wget -O /tmp/vipm.rpm https://packages.jki.net/vipm/preview/vipm_latest_preview_amd64.rpm && sudo dnf install -y --nogpgcheck /tmp/vipm.rpm && rm /tmp/vipm.rpm - RHEL 7 / CentOS 7 (yum):
wget -O /tmp/vipm.rpm https://packages.jki.net/vipm/preview/vipm_latest_preview_amd64.rpm && sudo yum install -y --nogpgcheck /tmp/vipm.rpm && rm /tmp/vipm.rpm - openSUSE (zypper):
wget -O /tmp/vipm.rpm https://packages.jki.net/vipm/preview/vipm_latest_preview_amd64.rpm && sudo zypper --non-interactive install --no-recommends --allow-unsigned-rpm /tmp/vipm.rpm && rm /tmp/vipm.rpm
- RHEL 8+ / Fedora / Rocky Linux / AlmaLinux (dnf):