Installation and verification of pytorch in linux or windows environment (solving runtimeerror problem)

Installation and verification of pytorch in linux or windows environment (solving runtimeerror problem)

1. Download the corresponding installation file from the pytorch official website

https://pytorch.org/

Select the corresponding version at getstarted

Method 1: Install directly using the corresponding installation instructions

But in fact, this is more likely to break or cause a runtimeout error. Solution: Use pip to search for the source first, stop downloading after it starts, then find the link printed on the screen, manually download whl and then install it manually.

Method 2: Select the corresponding version of whl for offline download

Find the download link

Download the whl file and install it

pytorch installs the specified version from the link

pip3 install whl
pip3 install torchvision

2. Verification

import torch
import torchvision
print(torch.cuda.is_available())#The output is true

3. Check the pytorch version

import torch
print(torch.__version__)

Summarize

The above is the installation and verification of pytorch in Linux or Windows environment introduced by the editor (solving the runtimeerror problem). I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Solve the problem of out of memory during Pytorch training and testing
  • Solve the error problem encountered when Pytorch loads the trained model
  • Solution to RuntimeError: when testing neural network in Pytorch

<<:  CentOS7.x uninstall and install MySQL5.7 operation process and encoding format modification method

>>:  Usage and best practice guide for watch in Vue3

Recommend

CSS form validation function implementation code

Rendering principle In the form element, there is...

JavaScript data flattening detailed explanation

Table of contents What is Flattening recursion to...

How to use cc.follow for camera tracking in CocosCreator

Cocos Creator version: 2.3.4 Demo download: https...

Detailed explanation of the implementation of MySQL auto-increment primary key

Table of contents 1. Where is the self-incremente...

Solution to nginx not jumping to the upstream address

Preface Today I encountered a very strange proble...

Some summary of html to pdf conversion cases (multiple pictures recommended)

Due to work requirements, I recently spent some t...

CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions

1. Introduction This article does not have screen...

CSS to achieve Tik Tok subscription button animation effect

I was watching Tik Tok some time ago and thought ...

Detailed explanation of the platform bus of Linux driver

Table of contents 1. Introduction to platform bus...

Introduction to TypeScript interfaces

Table of contents 1. Interface definition 2. Attr...

Detailed steps to install and uninstall Apache (httpd) service on centos 7

uninstall First, confirm whether it has been inst...

Collapsed table row element bug

Let's take an example: The code is very simple...

React concurrent function experience (front-end concurrent mode)

React is an open-source JavaScript library used b...

A brief discussion on several ways to pass parameters in react routing

The first parameter passing method is dynamic rou...

Detailed explanation of Vue filter implementation and application scenarios

1. Brief Introduction Vue.js allows you to define...