python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to pass a parameter into bigquery query on colab
I have a Bigquery query on colab:
from google.colab import auth
auth.authenticate_user()
print('Authenticated')
project_id = '[your project ID]'
sample_count = 2000
df = pd.io.gbq.read_gbq('''
SELE...

Carlos
Votes: 0
Answers: 2
how to install octave packages on google colab?
I need to run some matlab code on google colab that needs 'image' package. I tried
pkg install -forge image
but that through an error. please help!
G1rlonf1r3
Votes: 0
Answers: 1
Openning website with Webbrowser - Google Colab
I'm running this code on Google Colab to open an website and it's not working:
import webbrowser as wb
wb.get('C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s').open_new_tab('https://ww...
Pedro Aguiar Amorim
Votes: 0
Answers: 0
Mounting Google Drive on Colab
I'm trying to mount my drive on Colab using the following code:
from google.colab import drive
drive._mount('/content/drive')
And I'm getting the following error:
298 # Terminate the DriveFS bi...
zyezye11
Votes: 0
Answers: 2