本 Wiki 开启了 HTTPS。但由于同 IP 的 Blog 也开启了 HTTPS,因此本站必须要支持 SNI 的浏览器才能浏览。为了兼容一部分浏览器,本站保留了 HTTP 作为兼容。如果您的浏览器支持 SNI,请尽量通过 HTTPS 访问本站,谢谢!
这里会显示出您选择的修订版和当前版本之间的差别。
两侧同时换到之前的修订记录前一修订版后一修订版 | 前一修订版 | ||
cg:books:3d_engine_dev:chpt_2 [2024/11/30 14:06] – [Windows Setup] codinghare | cg:books:3d_engine_dev:chpt_2 [2024/11/30 15:02] (当前版本) – [安装 Conan] codinghare | ||
---|---|---|---|
行 21: | 行 21: | ||
* Visual C++ Compiler (Microsoft Visual C++ Redistributable for Visual Studio 2022) | * Visual C++ Compiler (Microsoft Visual C++ Redistributable for Visual Studio 2022) | ||
* https:// | * https:// | ||
+ | * 需要运行 Developer Command Prompt(DCP) | ||
+ | * 在 DCP 中定位到项目目录,使用 '' | ||
+ | ===安装 CMake=== | ||
+ | * https:// | ||
+ | * 确保 '' | ||
+ | * 检查版本 '' | ||
+ | ===安装 Conan=== | ||
+ | - 安装 Python 3.11.4 https:// | ||
+ | - 安装 conan | ||
+ | <code python> | ||
+ | # 安装 | ||
+ | pip install conan==1.61.0 | ||
+ | # 检查 | ||
+ | conan -v | ||
+ | </ | ||
+ | <WRAP center round info 100%> | ||
+ | * 1.61.0 版本 conan 与 3.12 以上 python 版本冲突。 | ||
+ | * 确保 python 的 script 目录添加到了 Path (user) 中 | ||
+ | </ | ||
+ | |||
+ |