./vcpkg.exe 执行安装命令
时间: 2024-02-04 09:03:20 浏览: 70
vcpkg-2022.10.19.zip
如果你想使用 vcpkg 来安装 C++ 库,可以按照以下步骤进行操作:
1. 下载 vcpkg 并解压缩到你喜欢的位置。
2. 打开命令行工具(如 cmd 或 PowerShell)并进入 vcpkg 目录。
3. 执行以下命令来更新 vcpkg:
```
.\vcpkg.exe update
```
4. 执行以下命令来安装你需要的库(例如安装 Boost 库):
```
.\vcpkg.exe install boost
```
如果你需要安装多个库,可以在命令中列出它们的名称,用空格隔开。
5. 安装完成后,在你的 C++ 代码中使用这些库,例如:
```cpp
#include <iostream>
#include <boost/algorithm/string.hpp>
int main()
{
std::string str = "hello world";
boost::algorithm::to_upper(str);
std::cout << str << std::endl;
return 0;
}
```
注意,你需要在编译时将这些库链接到你的程序中。具体的方法取决于你使用的编译器和构建工具。
阅读全文