20.04 安装vcpkg
时间: 2023-11-03 20:01:10 浏览: 217
要在 Ubuntu 20.04 上安装 vcpkg,可以按照以下步骤进行:
1. 打开终端,使用以下命令安装 git:
```
sudo apt-get update
sudo apt-get install git
```
2. 使用以下命令克隆 vcpkg 存储库:
```
git clone https://github.com/Microsoft/vcpkg.git
```
3. 进入 vcpkg 目录,并使用以下命令运行安装程序:
```
cd vcpkg
./bootstrap-vcpkg.sh
```
这将自动下载和编译 vcpkg。
4. 安装所需的库:
```
./vcpkg install <library-name>
```
可以使用上面的命令安装任何所需的库。例如,要安装 OpenSSL,可以使用以下命令:
```
./vcpkg install openssl
```
如果要安装多个库,可以在命令中列出它们,例如:
```
./vcpkg install openssl curl
```
完成后,可以使用 vcpkg 中的库进行 C++ 开发。
相关问题
ubuntu20.04 VCPKG安装pcl
可以使用以下命令安装PCL:
1.安装VCPKG工具
git clone https://github.com/Microsoft/vcpkg.git
cd vcpkg
./bootstrap-vcpkg.sh
2.安装PCL
./vcpkg install pcl
注意:VCPKG安装成功后需要将VCPKG路径添加到环境变量中。
ubuntu20.04 vcpkg 安装boost
以下是在 Ubuntu 20.04 上使用 vcpkg 安装 Boost 的步骤:
1. 安装 vcpkg
使用以下命令从 GitHub 下载 vcpkg:
```
git clone https://github.com/Microsoft/vcpkg.git
```
安装 vcpkg:
```
cd vcpkg
./bootstrap-vcpkg.sh
```
2. 安装 Boost
使用以下命令安装 Boost:
```
./vcpkg install boost
```
如果你想要安装特定版本的 Boost,可以使用以下命令:
```
./vcpkg install boost:x.y.z
```
其中,x.y.z 为 Boost 的版本号。
3. 配置 CMake
在你的 CMakeLists.txt 文件中添加以下代码来指定 Boost 的位置:
```
set(BOOST_ROOT /path/to/vcpkg/installed/x64-linux)
set(BOOST_INCLUDEDIR ${BOOST_ROOT}/include)
set(BOOST_LIBRARYDIR ${BOOST_ROOT}/lib)
find_package(Boost REQUIRED)
include_directories(${Boost_INCLUDE_DIRS})
target_link_libraries(your_target_name ${Boost_LIBRARIES})
```
其中,/path/to/vcpkg/installed/x64-linux 为 vcpkg 安装 Boost 的路径。
完成以上步骤后,你就可以在你的项目中使用 Boost 了。
阅读全文