Yolov4-tiny를 window에서 실행하기 위해 환경구성을 하던중 vcpkg를 통해 c++ 패키지 및 라이브러리를 관리할 수 있도록 설치가 github에 안내되어 있길래 그대로 진행

 

https://vcpkg.io/en/getting-started.html

 

Get started with vcpkg

Installing vcpkg is a two-step process: first, clone the repo, then run the bootstrapping script to produce the vcpkg binary. The repo can be cloned anywhere, and will include the vcpkg binary after bootstrapping as well as any libraries that are installed

vcpkg.io

 

위의 주소를 들어가서 진행하면 되는데
cmd창을 열고

 

Step 1: Clone the vcpkg repo

git clone https://github.com/Microsoft/vcpkg.git

Make sure you are in the directory you want the tool installed to before doing this.

Step 2: Run the bootstrap script to build vcpkg

.\vcpkg\bootstrap-vcpkg.bat

Install libraries for your project
vcpkg install [packages to install]

위의 step별로 진행하고 원하는 패키지를 설치하면 된다.

 

'c++(언어)' 카테고리의 다른 글

인프런 C++ 강의 포인터-1  (0) 2021.06.28

+ Recent posts