Skip to content

Commit c597daf

Browse files
Deploy to GitHub Pages on master [ci skip]
1 parent 19335b2 commit c597daf

File tree

4 files changed

+21
-29
lines changed

4 files changed

+21
-29
lines changed

assets/quick-start-module.js

+12-12
Original file line numberDiff line numberDiff line change
@@ -280,40 +280,40 @@ function commandMessage(key) {
280280
"# PyTorch does not support Python 2.7 on Windows. Please install with Python 3.",
281281

282282
"stable,conda,windows,cuda8,python3.5":
283-
"conda install pytorch cuda80 -c pytorch<br />pip3 install torchvision",
283+
"conda install pytorch torchvision cuda80 -c pytorch",
284284

285285
"stable,conda,windows,cuda9.0,python3.5":
286-
"conda install pytorch -c pytorch<br />pip3 install torchvision",
286+
"conda install pytorch torchvision -c pytorch ",
287287

288288
"stable,conda,windows,cuda10.0,python3.5":
289-
"conda install pytorch cuda100 -c pytorch<br />pip3 install torchvision",
289+
"conda install pytorch torchvision cuda100 -c pytorch",
290290

291291
"stable,conda,windows,cudanone,python3.5":
292-
"conda install pytorch-cpu -c pytorch<br />pip3 install torchvision",
292+
"conda install pytorch-cpu torchvision-cpu -c pytorch",
293293

294294
"stable,conda,windows,cuda8,python3.6":
295-
"conda install pytorch cuda80 -c pytorch<br />pip3 install torchvision",
295+
"conda install pytorch torchvision cuda80 -c pytorch",
296296

297297
"stable,conda,windows,cuda9.0,python3.6":
298-
"conda install pytorch -c pytorch<br />pip3 install torchvision",
298+
"conda install pytorch torchvision -c pytorch",
299299

300300
"stable,conda,windows,cuda10.0,python3.6":
301-
"conda install pytorch cuda100 -c pytorch<br />pip3 install torchvision",
301+
"conda install pytorch torchvision cuda100 -c pytorch",
302302

303303
"stable,conda,windows,cudanone,python3.6":
304-
"conda install pytorch-cpu -c pytorch<br />pip3 install torchvision",
304+
"conda install pytorch-cpu torchvision-cpu -c pytorch",
305305

306306
"stable,conda,windows,cuda8,python3.7":
307-
"conda install pytorch cuda80 -c pytorch<br />pip3 install torchvision",
307+
"conda install pytorch torchvision cuda80 -c pytorch",
308308

309309
"stable,conda,windows,cuda9.0,python3.7":
310-
"conda install pytorch -c pytorch<br />pip3 install torchvision",
310+
"conda install pytorch torchvision -c pytorch",
311311

312312
"stable,conda,windows,cuda10.0,python3.7":
313-
"conda install pytorch cuda100 -c pytorch<br />pip3 install torchvision",
313+
"conda install pytorch torchvision cuda100 -c pytorch",
314314

315315
"stable,conda,windows,cudanone,python3.7":
316-
"conda install pytorch-cpu -c pytorch<br />pip3 install torchvision",
316+
"conda install pytorch-cpu torchvision-cpu -c pytorch",
317317

318318
"stable,pip,macos,cuda8,python2.7":
319319
"pip install torch torchvision<br /># MacOS Binaries dont support CUDA, install from source if CUDA is needed",

feed.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.7.3">Jekyll</generator><link href="https://pytorch.org/feed.xml" rel="self" type="application/atom+xml" /><link href="https://pytorch.org/" rel="alternate" type="text/html" /><updated>2018-12-08T12:01:30-08:00</updated><id>https://pytorch.org/</id><title type="html">PyTorch Website</title><subtitle>Scientific Computing...</subtitle><author><name>Facebook</name></author><entry><title type="html">The road to 1.0: production ready PyTorch</title><link href="https://pytorch.org/blog/the-road-to-1_0/" rel="alternate" type="text/html" title="The road to 1.0: production ready PyTorch" /><published>2018-05-02T00:00:00-07:00</published><updated>2018-05-02T00:00:00-07:00</updated><id>https://pytorch.org/blog/the-road-to-1_0</id><content type="html" xml:base="https://pytorch.org/blog/the-road-to-1_0/">&lt;p&gt;We would like to give you a preview of the roadmap for PyTorch 1.0 , the next release of PyTorch. Over the last year, we’ve had 0.2, 0.3 and 0.4 transform PyTorch from a [Torch+Chainer]-like interface into something cleaner, adding double-backwards, numpy-like functions, advanced indexing and removing Variable boilerplate. At this time, we’re confident that the API is in a reasonable and stable state to confidently release a 1.0.&lt;/p&gt;
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.7.3">Jekyll</generator><link href="https://pytorch.org/feed.xml" rel="self" type="application/atom+xml" /><link href="https://pytorch.org/" rel="alternate" type="text/html" /><updated>2018-12-08T14:38:52-08:00</updated><id>https://pytorch.org/</id><title type="html">PyTorch Website</title><subtitle>Scientific Computing...</subtitle><author><name>Facebook</name></author><entry><title type="html">The road to 1.0: production ready PyTorch</title><link href="https://pytorch.org/blog/the-road-to-1_0/" rel="alternate" type="text/html" title="The road to 1.0: production ready PyTorch" /><published>2018-05-02T00:00:00-07:00</published><updated>2018-05-02T00:00:00-07:00</updated><id>https://pytorch.org/blog/the-road-to-1_0</id><content type="html" xml:base="https://pytorch.org/blog/the-road-to-1_0/">&lt;p&gt;We would like to give you a preview of the roadmap for PyTorch 1.0 , the next release of PyTorch. Over the last year, we’ve had 0.2, 0.3 and 0.4 transform PyTorch from a [Torch+Chainer]-like interface into something cleaner, adding double-backwards, numpy-like functions, advanced indexing and removing Variable boilerplate. At this time, we’re confident that the API is in a reasonable and stable state to confidently release a 1.0.&lt;/p&gt;
22

33
&lt;p&gt;However, 1.0 isn’t just about stability of the interface.&lt;/p&gt;
44

get-started/locally/index.html

+4-8
Original file line numberDiff line numberDiff line change
@@ -911,28 +911,24 @@ <h4 id="no-cuda">No CUDA</h4>
911911

912912
<p>To install PyTorch via Anaconda, and do not have a CUDA-capable[LINK] system or do not require CUDA, use the following <code class="highlighter-rouge">conda</code> command.</p>
913913

914-
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch-cpu <span class="nt">-c</span> pytorch
915-
pip3 install torchvision
914+
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch-cpu torchvision-cpu <span class="nt">-c</span> pytorch
916915
</code></pre></div></div>
917916

918917
<h4 id="cuda-90">CUDA 9.0</h4>
919918

920919
<p>To install PyTorch via Anaconda, and you are using CUDA 9.0, use the following <code class="highlighter-rouge">conda</code> command:</p>
921920

922-
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch <span class="nt">-c</span> pytorch
923-
pip3 install torchvision
921+
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch torchvision <span class="nt">-c</span> pytorch
924922
</code></pre></div></div>
925923

926924
<h4 id="cuda-8x">CUDA 8.x</h4>
927925

928-
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch cuda80 <span class="nt">-c</span> pytorch
929-
pip3 install torchvision
926+
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch torchvision cuda80 <span class="nt">-c</span> pytorch
930927
</code></pre></div></div>
931928

932929
<h4 id="cuda-100">CUDA 10.0</h4>
933930

934-
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch cuda100 <span class="nt">-c</span> pytorch
935-
pip3 install torchvision
931+
<div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>conda install pytorch torchvision cuda100 <span class="nt">-c</span> pytorch
936932
</code></pre></div></div>
937933

938934
<h3 id="pip-1">pip</h3>

get_started/installation/windows.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -68,31 +68,27 @@ To install PyTorch with Anaconda, you will need to open an Anaconda prompt via `
6868
To install PyTorch via Anaconda, and do not have a CUDA-capable[LINK] system or do not require CUDA, use the following `conda` command.
6969

7070
```bash
71-
conda install pytorch-cpu -c pytorch
72-
pip3 install torchvision
71+
conda install pytorch-cpu torchvision-cpu -c pytorch
7372
```
7473

7574
#### CUDA 9.0
7675

7776
To install PyTorch via Anaconda, and you are using CUDA 9.0, use the following `conda` command:
7877

7978
```bash
80-
conda install pytorch -c pytorch
81-
pip3 install torchvision
79+
conda install pytorch torchvision -c pytorch
8280
```
8381

8482
#### CUDA 8.x
8583

8684
```bash
87-
conda install pytorch cuda80 -c pytorch
88-
pip3 install torchvision
85+
conda install pytorch torchvision cuda80 -c pytorch
8986
```
9087

9188
#### CUDA 10.0
9289

9390
```bash
94-
conda install pytorch cuda100 -c pytorch
95-
pip3 install torchvision
91+
conda install pytorch torchvision cuda100 -c pytorch
9692
```
9793

9894
### pip

0 commit comments

Comments
 (0)