### Install VSRepo Packages (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Installs specified VapourSynth plugins and scripts using vsrepo.py. The command searches for package matches by identifier, namespace, modulename, and name in that order. ```command-line vsrepo.py install havsfunc ffms2 d2v ``` -------------------------------- ### List Installed VSRepo Packages (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Lists all VapourSynth packages that are currently installed via VSRepo. ```command-line vsrepo.py installed ``` -------------------------------- ### List Available VSRepo Packages (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Lists all packages known to VSRepo, including those not currently installed. This is useful for finding package identifiers or namespaces. ```command-line vsrepo.py available ``` -------------------------------- ### Upgrade All VSRepo Packages (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Updates all currently installed VapourSynth packages managed by VSRepo to their latest available versions. ```command-line vsrepo.py upgrade-all ``` -------------------------------- ### Uninstall VSRepo Package (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Removes all files associated with a specific package installed by VSRepo. Note that this command does not consider dependencies, and uninstalling a plugin may break scripts that rely on it. ```command-line vsrepo.py uninstall nnedi3 ``` -------------------------------- ### Compile VSRepo Definitions (vsrupdate.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Combines all individual VSRepo package definition files into a single distributable file. ```command-line vsrupdate.py compile ``` -------------------------------- ### Fetch Latest VSRepo Definitions (vsrepo.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Fetches the latest package definitions from the VSRepo source. This command updates the list of available packages and their versions. ```command-line vsrepo.py update ``` -------------------------------- ### Update Local VSRepo Definitions (vsrupdate.py) Source: https://github.com/vapoursynth/vsrepo/blob/master/README.md Queries the GitHub API to automatically add new releases and update local VSRepo package definitions. Requires a GitHub token for authentication. ```command-line vsrupdate.py update-local -o -g ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.