我想用python从gitlab上拉取文件,但是一直报"Permission denied"?
天蓬老师
天蓬老师 2017-04-18 09:58:46
0
2
303
天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(2)
黄舟

Try adding the current path
repo_path = './Cocoa Touch Class.xctemplate'

Peter_Zhu

The "Permission denied" error here is because there is no permission to create the local directory '/Cocoa Touch Class.xctemplate'

'/Cocoa Touch Class.xctemplate' is an absolute path, and the first '/' represents the system root directory

Your user should not have permission to create the 'Cocoa Touch Class.xctemplate' directory in the system root directory

Just change the repo_path variable below to a directory with permissions, for example:

repo_path = 'Cocoa Touch Class.xctemplate'
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!