Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleCheck Tensorflow, Keras and Pytorch installations with pip
# Check with pip which versions are installed
$ pip freeze | grep -E 'tensorflow|keras|torch'
keras==3.1214.1
tensorflow==2.21.0
torch==2.1112.0+cu128
torchaudio==2.11.0+cu128
torchvision==0.2627.0+cu128
Code Block
languagebash
titleEnter python interpreter
# Now test if the libraries work by running some commands in python
$ python

...