Windows环境下安装psbody
下载mesh
GitHub - MPI-IS/mesh: MPI-IS Mesh Processing Library
下载安装boost
Boost Downloads
解压到 D:\software\boost_1_85_0,这个路径后面要设置为环境变量 BOOST_ROOT 的值。
添加 BOOST_ROOT 环境变量
您可以通过图形界面配置,右击【此电脑】-【属性】-【高级系统设置】-【环境变量】。新建一个,变量名为 BOOST_ROOT,变量值为 D:\software\boost_1_85_0。
也可以使用命令行:
setx BOOST_ROOT D:\software\boost_1_85_0。
检查环境变量是否正确
Powershell 命令用于检查设置是否正确:
PS D:\software\boost_1_85_0> echo $env:BOOST_ROOT
D:\software\boost_1_85_0
4)编译 b2
在“Visual Studio 2019 Developer Command Prompt”窗口运行安装,用VS2019编译。在命令提示符(Command Prompt)中设置环境变量:
set DISTUTILS_USE_SDK=1
之后,直接运行 bootstrap.bat 即可,如果是非 Windows 系统,则是 bootstrap.sh。
PS D:\software\boost_1_85_0> .\bootstrap.bat
Building Boost.Build engine
Generating Boost.Build configuration in project-config.jam for msvc...
Bootstrapping is done. To build, run:
.\b2
To adjust configuration, edit 'project-config.jam'.
Further information:
- Command line help:
.\b2 --help
- Getting started guide:
http://boost.org/more/getting_started/windows.html
- Boost.Build documentation:
http://www.boost.org/build/
5) 用 b2 编译 Boost
由于我们需要编译 Win32 和 x64 两种平台,所以给 b2 命令行加上个参数:
PS D:\software\boost_1_85_0> .\b2.exe --address-model=64
非 Windows 系统,可以直接运行 ./b2。
编译安装psbody
set INCLUDE=%INCLUDE%;D:\Program Files\boost_1_85_0
set LIB=%LIB%;D:\Program Files\boost_1_85_0\stage\lib
python setup.py install
fatal error C1083: 无法打开包括文件: “CGAL/AABB_tree.h”: No such file or directory
把目录CGAL-4.7 从build\temp.win-amd64-cpython-310 拷贝到Release 目录下,
如果剪切,会报错:
error: [WinError 183] 当文件已存在时,无法创建该文件。: 'D:\\soft\\mesh-master\\build\\temp.win-amd64-cpython-310'
原文链接:https://blog.csdn.net/jacke121/article/details/138213831