Home > Enterprise >  Problem in changing directory with a path variable in google colab
Problem in changing directory with a path variable in google colab

Time:05-09

I want to change directory in google colab.

a = 'drive/MyDrive/COLAB/colab_common_utilities'

Following works:

# method 1:
import os
os.chdir('drive/MyDrive/COLAB/colab_common_utilities')

# method 2:
           
  • Related