Last active
January 15, 2020 07:59
-
-
Save asears/08212692ce21042fbc32841c1ba0d10a to your computer and use it in GitHub Desktop.
Pytorch Install with Conda
This file contains hidden or 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
| conda update -n base -c defaults conda | |
| conda install -c anaconda mkl | |
| # pytorch install requires -c | |
| # https://github.com/pytorch/pytorch/issues/4827 | |
| conda install mkl=2019 | |
| conda install pytorch torchvision -c pytorch | |
| # chamfer requires VS C++ 14.0 build tools for visual studio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment