File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ Prerequsites:
49
49
- A system equiped with an Nvidia GPU with properly configured CUDA
50
50
- [ CUDA Toolkit] ( https://developer.nvidia.com/cuda-toolkit-archive )
51
51
- [ cmake v3.17+] ( https://github.com/Kitware/CMake/releases )
52
+ - Note that Habitat does not build properly with cmake v3.24.0 and v3.24.1 due to a bug in cmake
52
53
- [ Git Large File Storage] ( https://git-lfs.github.com/ ) - which contains pre-trained habitat models
53
54
54
55
``` zsh
@@ -86,10 +87,10 @@ where `11-x` represents the version of CUDA you have installed.
86
87
87
88
Follow these steps to download and install a precompiled version of CMake:
88
89
``` bash
89
- wget https://github.com/Kitware/CMake/releases/download/v3.24.0 /cmake-3.24.0 -linux-x86_64.sh
90
- chmod +x cmake-3.24.0 -linux-x86_64.sh
90
+ wget https://github.com/Kitware/CMake/releases/download/v3.24.2 /cmake-3.24.2 -linux-x86_64.sh
91
+ chmod +x cmake-3.24.2 -linux-x86_64.sh
91
92
mkdir /opt/cmake
92
- sh cmake-3.24.0 -linux-x86_64.sh --prefix=/opt/cmake --skip-license
93
+ sh cmake-3.24.2 -linux-x86_64.sh --prefix=/opt/cmake --skip-license
93
94
ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
94
95
```
95
96
You can verify the version of CMake you installed with the following:
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ RUN pip3 install pillow>=7.2.0 pandas>=1.1.2 tqdm>=4.49.0
26
26
# make install
27
27
28
28
# iInstall latest cmake
29
- ADD https://github.com/Kitware/CMake/releases/download/v3.24.0 /cmake-3.24.0 -linux-x86_64.sh /cmake-3.24.0 -linux-x86_64.sh
29
+ ADD https://github.com/Kitware/CMake/releases/download/v3.24.2 /cmake-3.24.2 -linux-x86_64.sh /cmake-3.24.2 -linux-x86_64.sh
30
30
RUN mkdir /opt/cmake
31
- RUN sh /cmake-3.24.0 -linux-x86_64.sh --prefix=/opt/cmake --skip-license
31
+ RUN sh /cmake-3.24.2 -linux-x86_64.sh --prefix=/opt/cmake --skip-license
32
32
RUN ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
33
33
RUN cmake --version
34
34
You can’t perform that action at this time.
0 commit comments