我对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
目录。
答案 0 :(得分:1)
你从git项目中启动和运行的方法:
安装要求,对于python,这将是:
pip install -r requirements.txt
使用给定参数运行应用
现在步骤4可能是你遇到麻烦的地方,应用似乎需要1个参数(图像目录)。此图像目录是计算机上的文件夹。
指向计算机上的目录。例如:
python app.py /home/mastermindzh/Pictures
修改强> 在看了git repo后,我的怀疑得到了证实。