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
Great work and eager to try it out i had troubles setting everything up without a docker container though, too many dependency and cuda issues
with this dockerfile however i made it work, maybe its also for someone else of use:
FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y RUN conda install -y -c fvcore -c iopath -c conda-forge fvcore iopath && \ conda install -y -c pytorch3d pytorch3d=0.7.0 COPY requirements.txt . RUN pip install -r requirements.txt CMD ["/bin/bash"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Great work and eager to try it out
i had troubles setting everything up without a docker container though, too many dependency and cuda issues
with this dockerfile however i made it work, maybe its also for someone else of use:
The text was updated successfully, but these errors were encountered: