Heim  >  Fragen und Antworten  >  Hauptteil

我想用python从gitlab上拉取文件,但是一直报"Permission denied"?

天蓬老师天蓬老师2765 Tage vor308

Antworte allen(2)Ich werde antworten

  • 黄舟

    黄舟2017-04-18 10:00:46

    添加当前路径试试
    repo_path = './Cocoa Touch Class.xctemplate'

    Antwort
    0
  • 天蓬老师

    天蓬老师2017-04-18 10:00:46

    这里的“Permission denied”报错是因为建立本地目录'/Cocoa Touch Class.xctemplate'无权限

    '/Cocoa Touch Class.xctemplate' 是绝对路径,最前面的'/'代表系统根目录

    你的用户应该是没有权限在系统根目录建立'Cocoa Touch Class.xctemplate'目录的

    下面的repo_path变量换个有权限的目录就可以了,例如:

    repo_path = 'Cocoa Touch Class.xctemplate'

    Antwort
    0
  • StornierenAntwort