Replies: 1 comment
-
If i try the .sln to create the python package, i get a zlib.lib linker error, "inflate is already defined" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, i hope someone can, i already posted it on discord but hope i get here faster help.
I will build Open3D with Cuda Support on Win 11 / vs22
My Powerhell build code:
$currentPath = Get-Location
cd $PythonEnvPath
.\activate
cd $BasePath
rm .\Open3D -r -force
git clone https://github.com/isl-org/Open3D
cd .\Open3D
mkdir build
cd .\build
cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="$BasePath\build" -DBUILD_PYTHON_MODULE=ON -DBUILD_CUDA_MODULE=ON .. | Tee-Object -file $currentPath\cmake_init.txt
cmake --build . --config Release --target install-pip-package | Tee-Object -file $currentPath\install-pip-package.txt
pip list
cd $currentPath
No obvious error, but no pip packet either.
Hope someone sees the problem.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions