从Google Colaboratory的requirements.txt安装依赖项

时间:2018-05-16 21:00:15

标签: google-colaboratory

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

pip install -r requirements.txt

相当

2 个答案:

答案 0 :(得分:2)

丹尼尔的上述暗示,我能够解决它。

使用"从本地计算机脚本上传文件"我将requirements.txt文件上传到Google Colab平台。找到脚本here。这是脚本,

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])))

执行时的输出,明确表示,它将此文件保存为' requirements.txt'。但我无法在Google云端硬盘中找到此文件,这对我来说没问题。然后,

!pip install -r requirements.txt

工作!

答案 1 :(得分:0)

您无法在Google云端硬盘中找到上载的文件。因为它是在Python 3 Google Backend Compute Engine中上载的。当您终止会话时,所有文件和数据都将被删除。