| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This directory contains Jupyter notebook tutorials for Google Cloud Platform. The tutorials assume you have performed the following steps:
Install the dependencies with the following command:
pip install --upgrade -r requirements.txt
You can either perform these set up steps in a single notebook, or add the steps to your IPython configuration file to apply to all notebooks.
To perform the set up steps for a single notebook, run the following commands in your notebook to register the BigQuery magic commands and set matplotlib to render inline:
%load_ext google.cloud.bigquery
%matplotlib inlineTo perform the set up steps implicitly for all of your notebooks, add the following code to your ipython_config.py file to register the BigQuery magic commands and set matplotlib to render inline:
c = get_config()
# Register magic commands
c.InteractiveShellApp.extensions = [
'google.cloud.bigquery',
]
# Enable matplotlib renderings to render inline in the notebook.
c.InteractiveShellApp.matplotlib = 'inline'See IPython documentation for more information about IPython configuration.
| Back | FazBrowse Home | New Git URL |