node-mesh-process
v1.0.18
Published
#### 使用gitbash工具
Downloads
21
Readme
windows上配置
使用gitbash工具
没有的话需要安装,比power shell好用
设置代理
export http_proxy='http://127.0.0.1:1087'
export http_proxy='https://127.0.0.1:1087'
安装vcpkg
git clone https://github.com/microsoft/vcpkg
cd vcpkg
.\bootstrap-vcpkg.sh
设置vcpkg
环境变量VCPKG_DEFAULT_TRIPLET
设置为x64-windows
安装CGAL
./vcpkg.exe search cgal
安装可能需要很长时间,需要耐心等待
linux 编译
设置编译GCC版本 export CC="/opt/compiler/gcc-12/bin/gcc" export CXX="/opt/compiler/gcc-12/bin/g++"
设置代理,避免node-gyp需要下载header失败 export https_proxy=http://172.19.56.199:3128/ export http_proxy=http://172.19.56.199:3128/