0

Let's suppose i don't want to have the latest version automatically imported by colab notebook. I want to list all my dependencies, their versions and freeze the versions. How can i list the versions?

  • Does this answer your question? [Import data into Google Colaboratory](https://stackoverflow.com/questions/46986398/import-data-into-google-colaboratory) – Jay Vaghasiya Feb 24 '20 at 10:12

1 Answers1

1

You can always use the ! operator to run shell commands in colab (or jupyter notebooks). So if you do:

!pip freeze

you will be able to see the current versions of packages. To install a different version of package you can follow my answer here: Make colab use the latest installation of a library

Ankur Ankan
  • 2,696
  • 2
  • 18
  • 36