我在安装CocoaPods时遇到问题。我已经用谷歌搜索了一个解决方案,并按照How do I select a project in my Podfile? I'm getting the error: Unable to find the Xcode project for the target 'Pods'中的答案。谁能说我做错了什么?
Michaels-MacBook-Air:~ michael$ cd ~/Documents/Chinese\ Restaurants/
Michaels-MacBook-Air:Chinese Restaurants michael$ pod install
[in /Users/michael]
Analyzing dependencies
[!] Could not automatically select an Xcode project. Specify one in your Podfile like so:
xcodeproj 'path/to/Project.xcodeproj'
Michaels-MacBook-Air:Chinese Restaurants michael$ cd ~/Documents/Chinese\ Restaurants/Chinese\ Restaurants.xcodeproj/
Michaels-MacBook-Air:Chinese Restaurants.xcodeproj michael$ pod setup
Setting up CocoaPods master repo
Already up-to-date.
Setup completed (read-only access)
Michaels-MacBook-Air:Chinese Restaurants.xcodeproj michael$ touch Podfile
Michaels-MacBook-Air:Chinese Restaurants.xcodeproj michael$ open -e Podfile
Michaels-MacBook-Air:Chinese Restaurants.xcodeproj michael$ pod install
Analyzing dependencies
[!] Could not automatically select an Xcode project. Specify one in your Podfile like so:
xcodeproj 'path/to/Project.xcodeproj'
答案 0 :(得分:9)
在我的情况下,错误是因为我的Xcode项目中有两个 .xcodeproj
文件。
因此,解决方案是删除不必要的.xcodeproj
文件,然后重新执行
pod install
答案 1 :(得分:0)
我尝试在vim中编辑文件,就像在https://www.youtube.com/watch?v=9_FbAlq2g9o中一样,这解决了它。希望知道这对其他人有用。
答案 2 :(得分:0)
这是解决方案。事实上,解决方案已经清楚地显示出来了。
Could not automatically select an Xcode project. Specify one in your Podfile like so:
xcodeproj 'path/to/Project.xcodeproj'
我无法理解上面的提示。后来我明白了。
首先,您应该运行终端并cd进入项目目录。 其次,输入“vim podfile”并运行。 第三步,单击“i”按钮并切换到编辑模式。 第四,现在你可以输入'xcodeproj projectname.xcodeproj' 然后,单击ESC并键入':wq'。这意味着保存并退出。 最后,您重新键入“pod install”,它将正常运行。