Search code examples
iosswiftxcodealamofire

do i need to install alamofire in code if share the code to other system


I have installed alamofire using PODS on my macbook in my current project. Now if i share same project to some other person, do he/she also need to install alamofire to run the project ?

Thanks


Solution

  • Yes, They have to install pods. If the other user don't have cocoapods. They have to install cocoapods first.

    1.First open your terminal

    2.Then update your gem file with command

    sudo gem install -n /usr/local/bin cocoapods
    

    3.Then give your project path

    cd /Path of project

    pod install