ios pod安装错误[!]无法添加URL名为“master-1”的源

t9aqgxwy  于 2023-05-19  发布在  iOS
关注(0)|答案(4)|浏览(119)

我在OS X 10.9.5上使用xcode 6.2
我已经安装了ruby v2.6.3p62和pod v1.6.1,并且已经克隆了.cocoapods/repos/master,
在我的项目目录中运行命令之后:

pod init

创建Podfile并将“pod 'Alamofire'”添加到文件中以添加依赖项
但是,当我运行命令时:

pod install

我收到这条信息:

Analyzing dependencies
env: illegal option -- u
usage: env [-i] [name=value ...] [utility [argument ...]]
Setting up CocoaPods master repo

[i] Unable to add a source with url 'https://github.com/CocoaPods/Specs.git'named 'master-1.
You can try adding it manually in '/Users/myUser/.cocoapods/repos'or via 'pod repo add'.

我试着删除并重新克隆.cocoapods/repos/master,
将Xcode中的命令行工具更改为Xcode 6.2或设置为空,
但这并没有解决问题

更新

这是我Podfile

# Uncomment the next line to define a global platform for your project
platform :ios, '8.0'

target 'MyProject' do
  # Comment the next line if you're not using Swift and don't want to use dynimic frameworks
  use_frameworks!

  # Pods for MyProject
  pod 'Alamofire'

end
vfh0ocws

vfh0ocws1#

你有没有试着按照上面提到的指示去做?
进入您的终端并:

cd /Users/myUser/.cocoapods/repos

接着是:

pod repo add https://github.com/CocoaPods/Specs.git master-1
8xiog9wr

8xiog9wr2#

POD安装步骤:-

  • pod init(如果您还没有创建一个新的Podfile,则创建一个新的Podfile,否则转到下一步)
  • 打开Podfile
  • 添加pod 'Alamofire'
  • pod安装
5ssjco0h

5ssjco0h3#

试试下面的命令。
pod update YourPodName
这里YourPodName代表您的播客名。
示例:-pod update Alamofire

e5njpo68

e5njpo684#

你有没有试着按照上面提到的这些指示去做?
1-第一步
$ cd /Users/username/.cocoapods/repos
2-删除文件夹主文件(如果存在)
rm -rf master
3-克隆Cocoapods/规格
$ git clone https://github.com/CocoaPods/Specs.git master
4-然后设置pod
pod setup
就这样

相关问题