PyTorch get started:修订间差异
无编辑摘要 |
无编辑摘要 |
||
第1行: | 第1行: | ||
== Conda Installation== | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
conda create --name deeplearning python=3.11 | conda create --name deeplearning python=3.11 | ||
第4行: | 第6行: | ||
python --version | python --version | ||
// 3.11.5 | // 3.11.5 | ||
</syntaxhighlight> | |||
== Install pytorch == | |||
<syntaxhighlight lang="bash"> | |||
conda install pytorch::pytorch torchvision torchaudio -c pytorch | |||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Deep Learning]] | [[Category:Deep Learning]] |
2023年12月11日 (一) 04:31的版本
Conda Installation
conda create --name deeplearning python=3.11
conda activate deeplearning
python --version
// 3.11.5
Install pytorch
conda install pytorch::pytorch torchvision torchaudio -c pytorch