我如何在 codenvy 中 运行 一个简单的 python 2.7 项目?

How do I run a simple python 2.7 project in codenvy?

我正在尝试将 codenvy.com 用于 运行 一个简单的 python 2.7 项目,但出现此错误:

[ERROR] testing-python2_unpack/requirements.txt: no such file or directory

什么是 requirements.txt 文件,放在哪里以及它应该是什么 运行 一个简单的

print "Hello world!"

requirements.txt 列出了项目的包依赖项,将与其一起安装 -- 这是 python 包的基本属性。

如果您的包没有依赖项,您可能会得到一个空文件——只是 运行

$ touch requirements.txt

在您的包中创建一个空文件。