'Where is the official manifest / definition of google colab's environment?

Is there a website or git repository where there is a clear listing of all the python packages and other dependencies installed on Google CoLaboratory? Is there a docker image that corresponds to a Google CoLab environment?



Solution 1:[1]

I see your question is to view the already installed packages in google colab.

You can run this command for viewing it:

!pip list -v | grep [Kk]eras

You can also view all the packages, through this command:

!pip list -v

For more info, visit this link.

Solution 2:[2]

You can find out about all the packages installed in Colab using

!pip list -v 

Where it shows you the packages' names, versions, locations, and the installer.

Solution 3:[3]

There is no clear listing of all the packages and dependencies installed on Google CoLaboratory. However, you can use the !pip freeze command to list all the packages that are currently installed in your environment.

The github repo for the Google CoLaboratory environment is here: link and you should be able to see the imported package dependencies in this file link

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 RobC
Solution 2 Mohana
Solution 3