You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM pytorch/pytorch:1.1.0-cuda10.0-cudnn7.5-devel
RUN apt-get update && apt-get install -y libboost-all-dev\
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade pip
RUN pip install Pillow==6.1
RUN apt remove cmake
RUN pip install cmake --upgrade
RUN pip install setuptools==39.1.0
RUN pip install torch==1.3.0 torchvision==0.4.1
# spconv
WORKDIR /root
RUN git clone https://github.com/poodarchu/spconv.git --recursive /spconv
RUN cd /spconv && python setup.py bdist_wheel
RUN cd /spconv/dist && pip install *
Above is a docker file you can also use nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04 in first line
it took 3 long days to find it
Credits to V2AI/Det3D#155 (comment)
The text was updated successfully, but these errors were encountered:
Above is a docker file you can also use
nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
in first lineit took 3 long days to find it
Credits to V2AI/Det3D#155 (comment)
The text was updated successfully, but these errors were encountered: