File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
cpp/open3d/t/io/file_format Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ bool ReadPointCloudFromSPLAT(const std::string &filename,
88
88
try {
89
89
// Open the file
90
90
utility::filesystem::CFile file;
91
- if (!file.Open (filename, " r " )) {
91
+ if (!file.Open (filename, " rb " )) {
92
92
utility::LogWarning (" Read SPLAT failed: unable to open file: {}" ,
93
93
filename);
94
94
return false ;
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ install_python_dependencies() {
76
76
fi
77
77
if [ " $BUILD_PYTORCH_OPS " == " ON" ]; then # ML/requirements-torch.txt
78
78
if [[ " $OSTYPE " == " linux-gnu" * && " $BUILD_SYCL_MODULE " == " OFF" ]]; then
79
- python -m pip install -U " ${TORCH_GLNX} " -f " $TORCH_REPO_URL "
79
+ python -m pip install -U " ${TORCH_GLNX} " -f " $TORCH_REPO_URL "
80
80
python -m pip install tensorboard
81
81
elif [[ " $OSTYPE " == " linux-gnu" * && " $BUILD_SYCL_MODULE " == " ON" ]]; then
82
82
python -m pip install -U " ${TORCH_GLNX} .cxx11.abi" -i " $TORCH_CXX11_URL "
@@ -356,7 +356,7 @@ install_docs_dependencies() {
356
356
command -v python
357
357
python -V
358
358
python -m pip install -U -q " pip==$PIP_VER "
359
- which cmake || python -m pip install -U -q cmake
359
+ which cmake || python -m pip install -U -q " cmake<4.0 "
360
360
python -m pip install -U -q -r " ${OPEN3D_SOURCE_ROOT} /python/requirements_build.txt"
361
361
if [[ -d " $1 " ]]; then
362
362
OPEN3D_ML_ROOT=" $1 "
You can’t perform that action at this time.
0 commit comments