如果你遇到了错误提示 error: 'vcpkg install' requires a list of packages to install in classic mode,这意味着你没有在命令中提供任何包名。要解决这个问题,你需要在命令中添加至少一个包名。 检查和更新 vcpkg 如果你不确定你的 vcpkg 是否是最新的,或者是否配置正确,你可以尝试以下步骤: 更新vcpk
vcpkg remove --outdated Uninstall all out-of-date packages vcpkg list List installed packages vcpkg update Display list of packagesforupdating vcpkg upgrade Rebuild all outdated packages vcpkg x-history <pkg> (Experimental) Shows thehistoryof CONTROL versions of a package vcpkghash<file> [alg] Hash...
vcpkg list 列出已安装包 List installed packages vcpkg update 列出需要升级的包 Display list of packages for updating vcpkg hash <file> [alg] 对文件进行Hash(默认是SHA512) Hash a file by specific algorithm, default SHA512 vcpkg integrate install Make installed packages available user-wide. Requires ...
vcpkg_acquire_msys(<MSYS_ROOT_VAR> PACKAGES <package>... [NO_DEFAULT_PACKAGES] [DIRECT_PACKAGES <URL> <SHA512> <URL> <SHA512> ...] ) Parameters MSYS_ROOT_VAR An out-variable that will be set to the path to MSYS2. PACKAGES A list of packages to acquire in msys. To ensure a ...
git clone https://github.com/microsoft/vcpkg.git C:\vcpkg vcpkg install openblas:x64-windows vcpkg install vulkan:x64-windows vcpkg install openblas:x64-windows vulkan:x64-windows vcpkg list -DCMAKE_TOOLCHAIN_FILE=C:/path/to/vcpkg/scripts/buildsystems/vcpkg.cmake cmake -B build -DWHISPER...
Shows a list of the packages in the installed tree, along with the version and description of each. Example Konsoli $vcpkg listcxxopts:x64-windows 3.0.0 This is a lightweight C++ option parser library... fmt:x64-windows 9.0.0 Formatting library for C++. It can be used as a... range...
key: $(Build.SourcesDirectory)/vcpkg_x64-linux.txt | "$(vcpkgGitRef)" | "$(Agent.Name)" uses the source directory for the libraries and response file (which contains a list of packages), the commit ID, and the build agent name to generate a hash to use in the build pipeline. Pipe...
To see the list of the 759 libraries (1054 available packages) use vcpkg search: 3fd 2.6.2 C++ Framework For Fast Development abseil 7/30/2018 an open-source collection designed to augment the C++ standard library. Abseil… ace 6.5.1 The ADAPTIVE Communication Environment alac 2017-...
vcpkg remove --outdated Uninstall all out-of-date packages vcpkg list List installed packages vcpkg update Display list of packages for updating vcpkg upgrade Rebuild all outdated packages vcpkg hash <file> [alg] Hash a file by specific algorithm, default SHA512 vcpkg integrate install Make ...
.\vcpkg.exe list 可以看到你已经安装过的包了 代码语言:javascript 代码运行次数:0 运行 AI代码解释 vcpkg integrate install//全局安装vcpkg list//显示所有已安装vcpkg search//查看支持的第三方库vcpkg install jsoncpp:x86-windows//安装 jsoncpp 第三方库 x86vcpkg install @dep.txt//安装文件文本,里面每一行...