110

In Google Colaboratory, I can install a new library using !pip install package-name. But when I open the notebook again tomorrow, I need to re-install it every time.

Is there a way to install a library permanently? No need to spend time installing every time to use?

6 Answers 6

118

Yes. You can install the library in Google Drive. Then add the path to sys.path.

import os, sys
from google.colab import drive
drive.mount('/content/drive')
nb_path = '/content/notebooks'
os.symlink('/content/drive/My Drive/Colab Notebooks', nb_path)
sys.path.insert(0,nb_path)

Then you can install a library, for example, jdc, and specify the target.

!pip install --target=$nb_path jdc

Later, when you run the notebook again, you can skip the !pip install line. You can just import jdc and use it. Here's an example notebook.

https://colab.research.google.com/drive/1KpMDi9CjImudrzXsyTDAuRjtbahzIVjq

BTW, I really like jdc's %%add_to. It makes working with a big class much easier.

13
  • 1
    @vesszabo I guess it's possible. Instead of GDrive mount, you need to use gcsfuse to mount Google Cloud Storage bucket using embeded credential in your notebook (using %%writefile). Though I never try it.
    – korakot
    Commented Aug 29, 2019 at 10:11
  • 2
    who is jdc and what does %%add_to cell magic do?
    – vwvan
    Commented Apr 15, 2022 at 11:14
  • 1
    It might be better to just store the wheel on GDrive and PIP install from there. For a 1.5GB package, the difference in performance is huge.
    – Ajasja
    Commented May 28, 2022 at 16:14
  • 1
    Hi, I am getting all the time the error No such file or directory: '/content/notebooks/...' has anyone any idea on how to solve it?
    – MarinerZZ
    Commented Apr 20, 2023 at 10:14
  • 1
    may I ask why the symlink necessary here? Can we directly let nb_path = '/content/drive/My Drive/Colab Notebooks' ?
    – jerron
    Commented Oct 25, 2023 at 3:01
19

If you want a no-authorization solution. You can use mounting with gcsfuse + service-account key embedded in your notebook. Like this:

# first install gcsfuse
%%capture
!echo "deb http://packages.cloud.google.com/apt gcsfuse-bionic main" > /etc/apt/sources.list.d/gcsfuse.list
!curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
!apt update
!apt install gcsfuse

Then get your service account credential from google cloud console and embed it in the notebook

%%writefile /key.json
{
  "type": "service_account",
  "project_id": "kora-id",
  "private_key_id": "xxxxxxx",
  "private_key": "-----BEGIN PRIVATE KEY-----\nxxxxxxx==\n-----END PRIVATE KEY-----\n",
  "client_email": "[email protected]",
  "client_id": "100380920993833371482",
  "auth_uri": "https://accounts.google.com/o/oauth2/auth",
  "token_uri": "https://oauth2.googleapis.com/token",
  "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
  "client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/colab-7%40kora-id.iam.gserviceaccount.com"
}

Then set environment to look for this credential file

%env GOOGLE_APPLICATION_CREDENTIALS=/key.json

You must then create (or have it already) a gcs bucket. And mount it to a made-up directory.

!mkdir /content/my-bucket
!gcsfuse my-bucket /content/my-bucket

Then finally, install the library there. Like my above answer.

import sys
nb_path = '/content/my-bucket'
sys.path.insert(0, nb_path)
# Do this just once
!pip install --target=$nb_path jdc

You can now import jdc without !pip install it next time.

4
  • 3
    It's a few steps to get the json credential. Read this cloud.google.com/iam/docs/…
    – korakot
    Commented Aug 29, 2019 at 14:22
  • @KorakotChaovavanich, I successfully followed all the step. But, the folder my-bucket is not around in new runtime. May I know where I do wrong?
    – rpb
    Commented Oct 13, 2019 at 1:56
  • You must create a new gcs bucket here.(don't use my-bucket, use your own name) console.cloud.google.com/storage/browser
    – korakot
    Commented Oct 13, 2019 at 14:59
  • Please add to the answer a link or a quick guide for how to create that json. Its definitely not trivial Commented Nov 28, 2021 at 10:54
4

You can install the libraries in Google Drive.

Install virtualenv:

!pip install virtualenv

Mount Google Drive:

from google.colab import drive
drive.mount("/content/drive")

Create a New Virtual Environment:

!virtualenv /content/drive/MyDrive/vir_env

Activate Virtual Environment and Install required libraries:

!source /content/drive/MyDrive/vir_env/bin/activate; pip install numpy

Adding the Virtual Environment to sys.path:

import sys
sys.path.append("/content/drive/MyDrive/vir_env/lib/python3.10/site-packages")

(after installing the libraries to google drive you can just run the above code and use those libraries without installing them again.)

1

In case you need to install multiple libraries here is a snippet:

def install_library_to_drive(libraries_list):
  """ Install library on gdrive. Run this only once. """
  drive_path_root = 'path/to/mounted/drive/directory/where/you/will/install/libraries'
  for lib in libraries_list:
    drive_path_lib = drive_path_root + lib
    !pip install -q $lib --target=$drive_path_lib
    sys.path.insert(0, drive_path_lib)

def load_library_from_drive(libraries_list):
""" Technically, it just appends install dir to a sys.path """
  drive_path_root = 'path/to/mounted/drive/directory/where/you/will/install/libraries'
  for lib in libraries_list:
    drive_path_lib = drive_path_root + lib
    sys.path.insert(0, drive_path_lib)

libraries_list = ["torch", "jsonlines", "transformers"] # list your libraries
install_library_to_drive(libraries_list) # Run this just once
load_library_from_drive(libraries_list)
1
  • This looks really neat, like a very good and clean solution. The one thing that's missing is a specific example of what 'path/to/mounted/drive/directory/where/you/will/install/libraries' is likely to be. Any chance that could be added? Commented Nov 16, 2024 at 17:50
1

I have installed libraries permanently in google colab using a virtual environment. Use this blog as reference https://netraneupane.medium.com/how-to-install-libraries-permanently-in-google-colab-fb15a585d8a5

1
  • this is not an answer, it is just link. please add the content to your answer
    – iled
    Commented Sep 17, 2024 at 16:21
0

Steps to make key.json file:

Key steps:

  • Access Google Cloud Console: Go to the Google Cloud Platform console.
  • Navigate to Service Accounts: Under "IAM & Admin", select "Service Accounts".
  • Select your Service Account: Choose the service account you want to access the key for.
  • Create a new key: Click "Keys" > "Add Key" > "Create new key".
  • Choose JSON format: Select "JSON" as the key type.
  • Download the file: Click "Create" to download the "my-key.json" file.
  • Uploading to Colab:
  • Open your Colab notebook: Access your Google Colab notebook.
  • Use the file upload feature: In the left sidebar, click on the folder icon to access the file explorer and select "Upload".
  • Select "my-key.json": Choose the downloaded "my-key.json" file from your computer.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.