We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you for your awesome work, I am using this Dockerfile to use this repo:
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y build-essential gcc g++ clang git wget unzip libx11-dev libxext-dev libgl1-mesa-dev libqt5x11extras5-dev python3 python3-pip && rm -rf /var/lib/apt/lists/*
RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1-Linux-x86_64.sh -O /cmake-3.22.1.sh && chmod +x /cmake-3.22.1.sh && /cmake-3.22.1.sh --skip-license --prefix=/usr/local && rm /cmake-3.22.1.sh
WORKDIR /workspace/ct_icp
and I followed all of the simple steps you provided for installing superbuild, but with -DWITH_VIZ3D=ON here's my steps:
cmake ../superbuild -DWITH_VIZ3D=ON cmake --build . --config Release
and everything goes smoothly but it stops at this point:
please help me deploy your work.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for your awesome work,
I am using this Dockerfile to use this repo:
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y
build-essential
gcc
g++
clang
git
wget
unzip
libx11-dev
libxext-dev
libgl1-mesa-dev
libqt5x11extras5-dev
python3
python3-pip
&& rm -rf /var/lib/apt/lists/*
RUN wget https://github.com/Kitware/CMake/releases/download/v3.22.1/cmake-3.22.1-Linux-x86_64.sh -O /cmake-3.22.1.sh &&
chmod +x /cmake-3.22.1.sh &&
/cmake-3.22.1.sh --skip-license --prefix=/usr/local &&
rm /cmake-3.22.1.sh
WORKDIR /workspace/ct_icp
and I followed all of the simple steps you provided for installing superbuild, but with -DWITH_VIZ3D=ON
here's my steps:
cmake ../superbuild -DWITH_VIZ3D=ON
cmake --build . --config Release
and everything goes smoothly but it stops at this point:
please help me deploy your work.
The text was updated successfully, but these errors were encountered: