在 Google 云平台上的 Jupyter Notebook 中安装 RPostgres 库
Installing RPostgres Library in Jupyter Notebook on Google Cloud Platform
我正在尝试在 R 中安装 RPostgres 库,但我在 Google 云平台上使用 JupyterLab。我在 github.com/r-dbi/RPostgres 上找到了一些建议,但其中 none 包括使用 Google Cloud Notebooks 时的信息。
即使在将包放入 JupyterLab 上的正确文件夹后尝试从源代码安装包,我仍然收到 RPostgres 具有“非零退出状态”的错误:
install.packages("MyPath/RPostgres_1.3.3.tar.gz", repos=NULL, type='source')
我收到相同的错误消息 RPostgres 有“非零退出状态”。谢谢
要解决此问题,您首先需要安装“libpq-dev”,因为根据 SO answer,这是先决条件。请按照以下步骤在 Google 云笔记本中应用。
在您的 JupyterLab 中打开一个终端并执行 sudo apt-get install libpq-dev
打开一个R笔记本,使用install.packages("RPostgres")
安装Rpostgres
运行 library()
检查是否安装正确
请注意,我用于测试的机器是在 AI Platform -> Notebooks -> R 实例中创建的。
我正在尝试在 R 中安装 RPostgres 库,但我在 Google 云平台上使用 JupyterLab。我在 github.com/r-dbi/RPostgres 上找到了一些建议,但其中 none 包括使用 Google Cloud Notebooks 时的信息。
即使在将包放入 JupyterLab 上的正确文件夹后尝试从源代码安装包,我仍然收到 RPostgres 具有“非零退出状态”的错误:
install.packages("MyPath/RPostgres_1.3.3.tar.gz", repos=NULL, type='source')
我收到相同的错误消息 RPostgres 有“非零退出状态”。谢谢
要解决此问题,您首先需要安装“libpq-dev”,因为根据 SO answer,这是先决条件。请按照以下步骤在 Google 云笔记本中应用。
在您的 JupyterLab 中打开一个终端并执行
sudo apt-get install libpq-dev
打开一个R笔记本,使用
安装Rpostgresinstall.packages("RPostgres")
运行
library()
检查是否安装正确
请注意,我用于测试的机器是在 AI Platform -> Notebooks -> R 实例中创建的。