Is it possible to change google colab notebook IP/location? - google-colaboratory

I'm new to google colab. when I run the below code I could see the notebook IP. And its location is United States. Is it possible to connect it to India Location/IP?
!curl ipecho.net/plain

Related

How can I embed Google credentials for Drive/BQ to scheduled colab notebooks?

I am a Colab Pro user and am beginning to test out the scheduled notebook features. Often, my scheduled notebooks include fetching from or saving items to Google Drive, or using pandas.io to access and query data from BigQuery. How can I embed my credentials to ensure the colab notebook runs as expected when scheduled and the outputs go to the appropriate destinations?
Thanks!

Import colab notebooks from google drive to another colab notebook

I have mounted the google drive to google colab but don't know how to import and use other colab notebooks now.
What I want to do is to replace 'model.pkl' to the address of my notebook stored in google drive.
model = pickle.load(open('model.pkl', 'rb'))

Cannot connect colab to my google drive as it doesn't appear when searching

From my google drive, I'm trying to connect google colab to my google drive without success.
Please, find below the steps that I took:
more
connect more apps
typed 'colab' in the search bar and I didn't find the app.
Thank you in advance for helping me out.
While in Drive, click on New button (marked with a + New) on left-hand side and select More > Connect more apps
Then, by using the magnifying glass icon to "Search apps" and typing in colab, it returns no results
You are trying in correct direction, but Google has removed that option from Google Drive, you have to go via Google Colab itself, and save to Colab Notebooks Folder.
From there you can open them into Google colab, but creating new notebooks directly from Google Drive is not available as it used to be in past few years
Step 1:
Sign into the site thru the link https://colab.research.google.com.
From there, there will be a Google Drive tab with the ability to create new notebooks.
Step 2:
Then, next to the notebook, to the direct right of the Last opened column there is a small folder icon and clicking on that will bring you to your Google drive folder called My Drive > Colab Notebooks

I would like to purchase more disk drive space in google colab, i already have enouh google drive space

I am interested in purchasing more drive space inside of google colab. I was told if i payed for more google drive space it would give me colab space, it didnt
You can buy Google Drive space. This will increase the space of your Google Drive.
You can then mount the Google drive to your Google Colab, this will let you access your increased size from Colab.
from google.colab import drive
drive.mount('/content/drive')
This is the code to mount the drive to your colab. After mounting you can see the new folder on your Folders section on the Colab notebook.

Accessing Locally stored database using google colab

I have a dataset stored locally on my laptop, unfortunately i can't upload it to drive even in zip format, how can i train my model on this dataset(stored locally) using google colab
One option is to use Google Drive File Stream to mount your Google Drive on your local machine.
Then, you can put files there from your local machine and access them easily in Colab by mounting your Google Drive in the filesystem after running the following snippet:
from google.colab import drive
drive.mount('/content/drive')