I have installed vcpkg, a package manager for C++. Now after some time, I'd like to update it. How can I do that? Do I need to uninstall and reinstall?
I have installed vcpkg, a package manager for C++. Now after some time, I'd like to update it. How can I do that? Do I need to uninstall and reinstall?
The best way to update a vcpkg git clone is to do
git pull<vcpkg_root>/installed/ directorybootstrap.bat or bootstrap.shNote:
vcpkg upgrade/update command but it is discouraged since it is not transactionalvcpkg integrate remove/installThe vcpkg community on Github provided an official answer on their FAQ. They suggest pulling the repo and running the bootstrap script.