Answers for "linux get pytorch version"

0

get pytorch version

import torch
print(torch.__version__)
Posted by: Guest on April-26-2020
0

get pytorch version version in ubuntu

python3 -c "import torch; print(torch.__version__)" # For Python 3
python -c "import torch; print(torch.__version__)" # For Python 2
Posted by: Guest on September-16-2021

Python Answers by Framework

Browse Popular Code Answers by Language