http://www.open3d.org/docs/release/docker.html#install-and-run-open3d-apps-in-docker
Docker — Open3D 0.17.0 documentation
Docker provides a convenient way to build, install and run applications isolated from the rest of your system. You do not need to change software versions on your system or install new software, except the Docker engine itself. First, install Docker follow
www.open3d.org
# This could also be another Ubuntu or Debian based distribution
FROM ubuntu:latest
# Install Open3D system dependencies and pip
RUN apt-get update && apt-get install --no-install-recommends -y \
libgl1 \
libgomp1 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Install Open3D from the PyPI repositories
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir --upgrade open3d
'Docker' 카테고리의 다른 글
[Docker] Tensorflow GPU 사용하기 (0) | 2023.06.02 |
---|---|
[Docker] 도커 객체 한번에 제거 (0) | 2023.05.04 |
완성된 Docker Push 하는 방법 (0) | 2023.03.14 |
OpenCV 오류 (0) | 2023.03.14 |
Docker volume 할당하여 실행 (0) | 2023.03.13 |
http://www.open3d.org/docs/release/docker.html#install-and-run-open3d-apps-in-docker
Docker — Open3D 0.17.0 documentation
Docker provides a convenient way to build, install and run applications isolated from the rest of your system. You do not need to change software versions on your system or install new software, except the Docker engine itself. First, install Docker follow
www.open3d.org
# This could also be another Ubuntu or Debian based distribution
FROM ubuntu:latest
# Install Open3D system dependencies and pip
RUN apt-get update && apt-get install --no-install-recommends -y \
libgl1 \
libgomp1 \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
# Install Open3D from the PyPI repositories
RUN python3 -m pip install --no-cache-dir --upgrade pip && \
python3 -m pip install --no-cache-dir --upgrade open3d
'Docker' 카테고리의 다른 글
[Docker] Tensorflow GPU 사용하기 (0) | 2023.06.02 |
---|---|
[Docker] 도커 객체 한번에 제거 (0) | 2023.05.04 |
완성된 Docker Push 하는 방법 (0) | 2023.03.14 |
OpenCV 오류 (0) | 2023.03.14 |
Docker volume 할당하여 실행 (0) | 2023.03.13 |