CocoaPods安装总结
网上有一些教程,但是各有偏重,感觉不够完整,所以笔者汇总了一些网友的教程,并亲自验证安装了,并总结如下
1 在Mac上安装Ruby on Rails(ok)
在Mac上安装Rubyon Rails
http://blog.csdn.net/keyboardota/article/details/8935411
2 mac 系统下autoconf automake安装(ok)
curl -O http://mirrors.kernel.org/gnu/m4/m4-1.4.13.tar.gz
tar -xzvf m4-1.4.13.tar.gz
cd m4-1.4.13
./configure -prefix=/usr/local
make
sudo make install
cd ..
curl -Ohttp://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz
tar -xzvf autoconf-2.65.tar.gz
cd autoconf-2.65
./configure -prefix=/usr/local
make
sudo make install
cd ..
curl -Ohttp://mirrors.kernel.org/gnu/automake/automake-1.11.tar.gz
tar xzvf automake-1.11.tar.gz
cd automake-1.11
./configure -prefix=/usr/local
make
sudo make install
cd ..
curl -O http://mirrors.kernel.org/gnu/libtool/libtool-2.2.6b.tar.gz
tar xzvf libtool-2.2.6b.tar.gz
cd libtool-2.2.6b
./configure -prefix=/usr/local
make
sudo make install
curl http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz-o pkg-config-0.28.tar.gz
tar -zxvf pkg-config-0.28.tar.gz
cd pkg-config-0.28
./configure --with-internal-glib
3 Mac安装GCC
Mac安装GCC
http://elf8848.iteye.com/blog/1973736
kennethreitz/osx-gcc-installer
https://github.com/kennethreitz/osx-gcc-installer
Option 1: Downloading Pre-Built Binaries
4 libyaml 安装(ok)
4.1 wget的下载与安装
wget的下载与安装:
下载地址:ftp://ftp.cs.cuhk.edu.hk/pub/gnu/gnu/wget
安装:先把wget下载到的tar文件解压,然后利用cd与ls命令到wget目录下
cdusr
再执行以下命令
#./configure--with-ssl=openssl
#make
#makeinstall
#make clean
4.2 LibYAML安装(ok)
cd /root
mkdir LibYAML
cd LibYAML
wgethttp://pyyaml.org/download/libyaml/yaml-0.1.4.tar.gz
tar -xvzf yaml-0.1.4.tar.gz
cd yaml-0.1.4
./configure --prefix=/usr/local
make
make install
5 安装CocoaPods
在安装CocoaPods之前,首先要在本地安装好Ruby环境。至于如何在Mac中安装好Ruby环境,请google一下,本文不再涉及。
假如你在本地已经安装好Ruby环境,那么下载和安装CocoaPods将十分简单,只需要一行命令。在Terminator(也就是终端)中输入以下命令(注意,本文所有命令都是在终端中输入并运行的。什么,你不知道什么是终端?那请小编吃饭,小编告诉你):
sudo gem install cocoapods
但是,且慢。如果你在天朝,在终端中敲入这个命令之后,会发现半天没有任何反应。原因无他,因为那堵墙阻挡了cocoapods.org。(你会问,我靠,这都要墙!是的,小编也纳闷。)
但是,是的,又但是(不过是个可喜的“但是”)。我们可以用淘宝的Ruby镜像来访问cocoapods。按照下面的顺序在终端中敲入依次敲入命令:
$ gem sources --remove https://rubygems.org/ //等有反应之后再敲入以下命令 $ gem sources -a http://ruby.taobao.org/
为了验证你的Ruby镜像是并且仅是taobao,可以用以下命令查看:
$ gem sources -l
只有在终端中出现下面文字才表明你上面的命令是成功的:
*** CURRENT SOURCES *** http://ruby.taobao.org/
上面所有的命令完成之时,在小编的终端上是这个的样子:
这时候,你再次在终端中运行:
$ sudo gem install cocoapods
等上十几秒钟,CocoaPods就可以在你本地下载并且安装好了,不再需要其他设置。
敲入以上命令时,小编终端上是这个样子的(由于太长,仅截取前面一部分):
看到这里,你心里会不会说,我靠!太爽了,这么容易就可以下载并且安装好了!是的,小编也是这么想的。CocoPods就是这么简单,使用也十分简单。继续往下看吧
6 参考文档
(good)CocoaPods安装和使用教程
http://code4app.com/article/cocoapods-install-usage
(Good)在Mac上安装Rubyon Rails
http://blog.csdn.net/keyboardota/article/details/8935411
CocoaPods一个Objective-C第三方库的管理利器
http://blog.csdn.net/totogo2010/article/details/8198694
转 mac下autoconfautomake安装
http://blog.sina.com.cn/s/blog_586c261a0101jil1.html
在Mac上安装Rubyon Rails
http://blog.csdn.net/keyboardota/article/details/8935411
Mac安装GCC
http://elf8848.iteye.com/blog/1973736
wget的下载与安装使用
http://os.chinaunix.net/a2006/0821/966/000000966480.shtml
MacOS安装wget
http://shineonly.iteye.com/blog/1327821
Linux基本命令之linux cd命令详解
http://os.51cto.com/art/200907/140888.htm
CocoaPods一个Objective-C第三方库的管理利器
http://blog.csdn.net/totogo2010/article/details/8198694
CocoaPods安装和使用教程
http://code4app.com/article/cocoapods-install-usage
Getting Started
http://guides.cocoapods.org/using/getting-started.html#getting-started
在Mac上安装Rubyon Rails
http://blog.csdn.net/keyboardota/article/details/8935411
在Mac OS X上建立Rubyon Rails开发环境
http://blog.csdn.net/crazyflyingsnow/article/details/1713509
Mac上安装与更新Ruby,Rails运行环境
http://blog.sina.com.cn/s/blog_6c2c995c01016yap.html
PHP-yaml 安装
http://blog.chinaunix.net/uid-26719405-id-4023961.html
centeros上安装ror
http://my.oschina.net/kill3bb/blog/64822
-bash: yum: command not found 问题解决
http://blog.csdn.net/gg296231363/article/details/7027668
wget: unable to resolve host address的解决方法
http://www.cnblogs.com/yiwd/p/3649109.html