Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
983 views
in Technique[技术] by (71.8m points)

ios - Cannot Install Cocoapods - No podfile found in the project directory

I downloaded a sample project to learn how to make a UIPageViewController, and I am trying to essentially fork that project and need to add a third-party library. Right now, it does not look like I have a .xcworkspace file in my project. When I try and install the cocoapods, I first run

sudo gem install cocoapods - in the specific project directory in my terminal

pod install - in that same directory

I am receiving an error in the terminal "No podfile found in the project directory."

Is this happening because I don't have a .xcworkspace file? Am I installing the podfile correctly?

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Steps to add CocoaPods to manage dependencies in your project:

  1. sudo gem install cocoapods -> This installs CocoaPods as a piece of software on your machine.

  2. Go to the root of your project directory and execute pod init -> This will add a base Podfile to your project.

  3. Add the external dependencies that you have to this Podfile by editing it.

  4. Run pod install which will fetch all the external dependencies mentioned by you, and associate it with a .xcworkspace file of your project. This .xcworkspace file will be generated for you if you already do not have one.

From here on, you should use .xcworkspace file instead of .xcproject / .xcodeproj.

Example Podfile Syntax:

target 'MyApp' do   
pod 'AFNetworking', '~> 3.0'
end

Where AFNetworking is the pod and 3.0 is the specific version that I want to install.

Documentation: Using CocoaPods


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...