Skip to content

Latest commit

 

History

History
325 lines (284 loc) · 32.5 KB

previous-versions.md

File metadata and controls

325 lines (284 loc) · 32.5 KB
layout title permalink background-class body-class order published redirect_from
get_started
Previous PyTorch Versions
/get-started/previous-versions/
get-started-background
get-started
4
true
/previous-versions.html

Installing previous versions of PyTorch

We'd prefer you install the latest version, but old binaries and installation instructions are provided below for your convenience.

Via conda

This should be used for most previous macOS version installs.

To install a previous version of PyTorch via Anaconda or Miniconda, replace "0.4.1" in the following commands with the desired version (i.e., "0.2.0").

Installing with CUDA 9

conda install pytorch=0.4.1 cuda90 -c pytorch

or

conda install pytorch=0.4.1 cuda92 -c pytorch

Installing with CUDA 8

conda install pytorch=0.4.1 cuda80 -c pytorch

Installing with CUDA 7.5

conda install pytorch=0.4.1 cuda75 -c pytorch

Installing without CUDA

conda install pytorch=0.4.1 -c pytorch

From source

It is possible to checkout an older version of PyTorch and build it. You can list tags in PyTorch git repository with git tag and checkout a particular one (replace '0.1.9' with the desired version) with

git checkout v0.1.9

Follow the install from source instructions in the README.md of the PyTorch checkout.

Via pip

Download the whl file with the desired version from the list below, and run

pip install /path/to/whl/file

You can also directly pass a URL to pip:

pip install https://download.pytorch.org/whl/cu80/torch-0.4.1-cp36-cp36m-linux_x86_64.whl

If you want no CUDA support, the URL would be something like https://download.pytorch.org/whl/cpu/torch-0.4.1-cp36-cp36m-linux_x86_64.whl

There are seven major lists below: Linux binaries compiled with CUDA 9.2, 9.1, 9.0, 8 and 7.5 support, Windows support, and Mac OSX & miscellaneous other binaries.

PyTorch Linux binaries compiled with CUDA 9.2

PyTorch Linux binaries compiled with CUDA 9.1

PyTorch Linux binaries compiled with CUDA 9.0

PyTorch Linux binaries compiled with CUDA 8

PyTorch Linux binaries compiled with CUDA 7.5

Linux No CUDA binaries

Windows binaries

Mac and misc. binaries

For recent macOS binaries, use conda:

e.g.,

conda install pytorch=0.4.1 cuda90 -c pytorch conda install pytorch=0.4.1 cuda92 -c pytorch conda install pytorch=0.4.1 cuda80 -c pytorch conda install pytorch=0.4.1 -c pytorch # No CUDA

<script type="text/javascript"> var pageId = "previous-versions"; // TBD: Make this programmatic $(".main-content-menu .nav-item").removeClass("nav-select"); $(".main-content-menu .nav-link[data-id='" + pageId + "']").parent(".nav-item").addClass("nav-select"); </script> <script src="{{ site.baseurl }}/assets/quick-start-module.js"></script> <script src="{{ site.baseurl }}/assets/show-screencast.js"></script>