Obtenga la versión de la versión Pytorch en Ubuntu

python3 -c "import torch; print(torch.__version__)" # For Python 3
python -c "import torch; print(torch.__version__)" # For Python 2
Nervous Nightingale