how to check pytorch version in terminal code example
Example 1: get pytorch version
python -c "import torch; print(torch.__version__)"
Example 2: get the torch version
import torch
print(torch.__version__)
python -c "import torch; print(torch.__version__)"
import torch
print(torch.__version__)