Skip to content

Commit

Permalink
Building from Source Installation instructions (facebookresearch#468)
Browse files Browse the repository at this point in the history
Summary:
Conda install does not specify a version and thus tries to install latest pytorch with cuda 10.1, which is not supported by latest pytorch.

Version the command for stability + make the command work.

Pull Request resolved: facebookresearch#468

Reviewed By: prigoyal

Differential Revision: D32247250

Pulled By: iseessel

fbshipit-source-id: 4a6366b1f59b260fb5628e8fca2dbdfc4990041e
  • Loading branch information
iseessel authored and facebook-github-bot committed Nov 8, 2021
1 parent 11aa8fe commit 9c10748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Our installation is simple and we provide pre-built binaries (pip, conda) and al
## Table of Contents
- [Requirements](#requirements)
- [Installing VISSL from source](#Installing-VISSL-from-source)
- [Install from source in PIP environment](#Install-from-source-in-PIP-environment)
- [Install from source in Conda environment](#Install-from-source-in-Conda-environment)
- [Install from source in PIP environment](#Install-from-source-in-PIP-environment)
- [Installing VISSL from pre-built binaries](#Installing-VISSL-from-pre-built-binaries)
- [Install VISSL conda package](#Install-VISSL-conda-package)
- [Install VISSL pip package](#Install-VISSL-pip-package)
Expand Down Expand Up @@ -40,7 +40,7 @@ source activate vissl_env
#### Step 2: Install PyTorch (conda)

```bash
conda install pytorch torchvision cudatoolkit=10.1 -c pytorch
conda install pytorch==1.7.1 torchvision==0.8.2 torchaudio==0.7.2 cudatoolkit=10.2 -c pytorch
```

#### Step 3: Install APEX (conda)
Expand Down

0 comments on commit 9c10748

Please sign in to comment.