我试图在我的项目目录中执行“make gen”命令,但出现错误:“无法确定URL的存储库类型:https://gitlab.myproject/podspecs.git:():在此上下文中不允许在第...行使用Map值。列...”我一直在寻找和谷歌搜索,但没有成功。只在pod和YAML中发现了类似的错误,但它们是特定的。我也检查了我的Podfile,它的源代码为“https://gitlab.myproject/podspecs.git”,所以可以
https://gitlab.myproject/podspecs.git
nszi6y051#
通过在终端中使用以下命令添加存储库解决了问题:
bundle exec pod repo add https://gitlab.myproject/podspecs.git
ep6jt1vc2#
pod repo add [name podSpecs] [URL Podspecs]例如:
pod repo add Specs http://igit.yycorp.com/specs.git
prdp8dxp3#
我无法用其他答案来解决这个问题。所以我尝试了不同的东西。最后我降级我的cocoapods版本。从1.11.2(最后一次)到1.8.4(我在另一台电脑上)。它工作得很好。我没有尝试其他版本。
sudo gem uninstall cocoapods-core cocoapods-deintegrate cocoapods-downloader cocoapods-plugins cocoapods-search cocoapods-trunk cocoapods-try sudo gem install cocoapods -v 1.8.4 pod install
cotxawn74#
我通过将Podfile中的源改为SSH而不是HTTP来解决这个问题。source git@link.to.repo:domain/repo.git
Podfile
source git@link.to.repo:domain/repo.git
c86crjj05#
在_inner_fn validate_repo_id(arg_value)文件“C:\Users\FERRANE\AppData\Local\Programs\Python\Python310\lib\site-packages\huggingface_hub\utils_validators raise HFValidationError(huggingface_hub.utils._validators.HFValidationError:存储库ID的格式必须为“repo_name”或“namespace/repo_name”:'../inputs/bert_base_uncased/'.如果需要,使用repo_type参数。
repo_type
5条答案
按热度按时间nszi6y051#
通过在终端中使用以下命令添加存储库解决了问题:
ep6jt1vc2#
pod repo add [name podSpecs] [URL Podspecs]
例如:
prdp8dxp3#
我无法用其他答案来解决这个问题。所以我尝试了不同的东西。最后我降级我的cocoapods版本。从1.11.2(最后一次)到1.8.4(我在另一台电脑上)。它工作得很好。
我没有尝试其他版本。
cotxawn74#
我通过将
Podfile
中的源改为SSH而不是HTTP来解决这个问题。source git@link.to.repo:domain/repo.git
c86crjj05#
在_inner_fn validate_repo_id(arg_value)文件“C:\Users\FERRANE\AppData\Local\Programs\Python\Python310\lib\site-packages\huggingface_hub\utils_validators raise HFValidationError(huggingface_hub.utils._validators.HFValidationError:存储库ID的格式必须为“repo_name”或“namespace/repo_name”:'../inputs/bert_base_uncased/'.如果需要,使用
repo_type
参数。