如何将xlrd导入Google Cloud Datalab

时间:2016-04-30 10:17:13

标签: google-cloud-platform jupyter google-cloud-datalab

我正在尝试将一些Excel电子表格中的数据导入Google Cloud Datalab中的Jupyter:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import xlrd
import re
plt.style.use('ggplot')

我收到以下错误:

ImportError                               Traceback (most recent call last)
<ipython-input-1-9a99b78364cd> in <module>()
      2 import numpy as np
      3 import matplotlib.pyplot as plt
----> 4 import xlrd
      5 import re
      6 plt.style.use('ggplot')

ImportError: No module named xlrd

我知道我必须安装xlrd模块。我怎样才能完成这项工作或要求在Datalab上完成这项工作?

提前感谢!

1 个答案:

答案 0 :(得分:1)

在datalab笔记本中的单元格中运行以下任一项:

!pip install xlrd

%%bash
pip install xlrd