在 Google Colaboratory 中从 requirements.txt 安装依赖项

Nit*_*tin 12 google-colaboratory

如何使用 Google Colab 中的需求文件安装 python 依赖项?

相当于 pip install -r requirements.txt

Nit*_*tin 15

根据上面丹尼尔的提示,我能够解决它。

使用“从本地计算机脚本上传文件”,我将我的 requirements.txt 文件上传到 Google Colab 平台。脚本可以在这里找到。这是剧本

from google.colab import files

uploaded = files.upload()

for fn in uploaded.keys():
  print('User uploaded file "{name}" with length {length} bytes'.format(
      name=fn, length=len(uploaded[fn])))
Run Code Online (Sandbox Code Playgroud)

执行时的输出清楚地表明,它将此文件保存为“requirements.txt”。但是我在 Google Drive 中找不到这个文件,这对我来说很好。然后,

!pip install -r requirements.txt
Run Code Online (Sandbox Code Playgroud)

工作!


Jos*_*son 13

您可以使用 IPython 魔法函数编写一个文件,%%writefile然后执行!pip install -r requirements.txt

IE:

细胞1

%%writefile requirements.txt

<contents of your requiements.txt>
Run Code Online (Sandbox Code Playgroud)

细胞2

!pip install -r requirements.txt
Run Code Online (Sandbox Code Playgroud)