Github不理解项目开始

时间:2018-04-11 06:50:56

标签: python github

我对Github上的一个项目很感兴趣,我正试图在本地运行它,请注意我是git的新手。 Github README提供以下入门命令:

Getting started
cd into this directory after cloning the repo
start the app
$ python app.py /images/directory

/images/directory是什么意思?克隆项目中没有/images目录。

1 个答案:

答案 0 :(得分:1)

你从git项目中启动和运行的方法:

  1. 找到git网址(通常以.git结尾)
  2. 克隆或下载
  3. 安装要求,对于python,这将是:

    pip install -r requirements.txt

  4. 使用给定参数运行应用

  5. 现在步骤4可能是你遇到麻烦的地方,应用似乎需要1个参数(图像目录)。此图像目录是计算机上的文件夹。

    指向计算机上的目录。例如:

    python app.py /home/mastermindzh/Pictures
    

    修改 在看了git repo后,我的怀疑得到了证实。