我尝试使用os
从python克隆git repo:
`os.system(repo_dir)`
其中repo_dir
是github存储库的命令+目录,如git clone https://github.com/rudskoy/pyTelegramBotAPI
我试图调查的一件事是,命令的结果在哪里?
我有两种情况来调查这个:
尝试使用subprocess
命令从git clone
收集输出:
output = subprocess.check_output("git clone "https://github.com/rudskoy/pyTelegramBotAPI", shell=True)
然后output
=' ' - 我认为这没关系,因为如果我尝试重复命令它会引发异常。