-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
zhenjun
committed
Jul 18, 2023
1 parent
ba66fdf
commit 3d79f57
Showing
59 changed files
with
50 additions
and
18,952 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,29 @@ | ||
FROM nvidia/cuda:10.1-base-ubuntu18.04 | ||
FROM nvidia/cuda:11.6.2-base-ubuntu20.04 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
# Optional: change mirror | ||
RUN sed -i 's/http:\/\/archive.ubuntu.com/https:\/\/mirror.sjtu.edu.cn/g' /etc/apt/sources.list | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y python3.6 python3-pip git vim htop libsm6 libxext6 libxrender-dev && \ | ||
apt-get install -y python3.8 python3-pip git vim htop libsm6 libxext6 libxrender-dev libgl1-mesa-glx libglib2.0-dev && \ | ||
update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \ | ||
update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 && \ | ||
pip install --upgrade pip | ||
|
||
COPY requirements.txt /tmp/requirements.txt | ||
|
||
# Optional: change pip mirror | ||
RUN pip config set global.index-url https://mirror.sjtu.edu.cn/pypi/web/simple | ||
|
||
# Install required packages | ||
RUN pip install -r /tmp/requirements.txt && \ | ||
rm /tmp/requirements.txt | ||
|
||
WORKDIR /opt/vtaco | ||
COPY . /opt/vtaco/ | ||
RUN python setup.py build_ext --inplace | ||
|
||
ENV JUPYTER_ALLOW_ROOT=1 | ||
ENV SHELL=/bin/bash | ||
|
||
CMD ["jupyter-lab", "--ip=0.0.0.0", "--ip=0.0.0.0", "--allow-root" ] | ||
CMD ["jupyter-lab", "--ip=0.0.0.0", "--allow-root" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
numpy==1.19.5 | ||
cython==0.29.2 | ||
trimesh==2.37.7 | ||
|
||
numpy==1.23.5 | ||
cython | ||
trimesh | ||
chumpy | ||
scipy | ||
scikit-image | ||
matplotlib | ||
pandas | ||
|
||
pillow | ||
imageio | ||
opencv-python==3.4.0.14 | ||
|
||
opencv-python | ||
plyfile | ||
libigl | ||
|
||
rtree | ||
pybullet | ||
tqdm | ||
h5py | ||
pyyaml==3.13 # TODO: Need Upgrade | ||
pyyaml | ||
tensorboard | ||
tensorboardX | ||
jupyterlab | ||
pykdtree | ||
|
||
--find-links=https://download.pytorch.org/whl/torch_stable.html | ||
torch==1.4.0+cu100 | ||
torchvision==0.5.0+cu100 | ||
--extra-index-url=https://download.pytorch.org/whl/cu116 | ||
torch==1.13.0+cu116 | ||
torchvision==0.14.0+cu116 | ||
|
||
--find-links=https://pytorch-geometric.com/whl/torch-1.4.0+cu100.html | ||
torch_scatter==2.0.4 | ||
tensorboardX==1.4 | ||
--find-links=https://data.pyg.org/whl/torch-1.13.0+cu116.html | ||
torch_scatter==2.0.9 | ||
|
||
tensorboard | ||
jupyterlab |
Oops, something went wrong.