0、前提"安装CocoaPods
因为最近两天我更换了ssd固态硬盘和重装了 macOS Sierra 10.12系统,需要重新安装cocoaPods Xcode8 macOS Sierra 10.12 安装CocoaPods
我在安装过程pod setup遇到问题, 这一步也是最容易出问题的一步
https://github.com/CocoaPods/Specs.git/': SSLRead() return error -9806
这个问题,其实就是网络抽筋,下载的时候可能只有几kb,太慢了导致无法访问
unable to access 'https://github.com/CocoaPods/Specs.git/'
也可能是rubygem镜像源是不是被墙了,可以切换镜像源。
解决办法一:终端 cd ~/.cocoapods/repos 然后 git clone https://github.com/CocoaPods/Specs.git master
解决办法二:找到一个安装好了cocoapods的Mac电脑,到他的~/.cocoapods/repos目录下面拷贝出master文件到自己的Mac上的相应位置。
一、下载Homebrew
先安装Homebrew,Mac OS X是基于Unix的 。Homebrew 是macOS 不可或缺的套件管理器,Homebrew官网
如果遇到安装问题可以参考一下这个mac安装homebrew失败怎么办?
二、 镜像更新源 解决brew update 慢
cd /usr/local
//二者选其一即可更新, 这里选择中科大镜像源为实例
git remote set - url origin git://mirrors.tuna.tsinghua.edu.cn/homebrew.git //清华镜像源
git remote set - url origin http://mirrors.ustc.edu.cn/homebrew.git //中科大镜像源
然后重新创建一个目录做如下操作
cd ~
mkdir tmp
cd tmp
//以下要与你选择的镜像源相同
git clone git : //mirrors.tuna.tsinghua.edu.cn/homebrew.git
git clone http : //mirrors.ustc.edu.cn/homebrew.git
sudo rm - rf / usr / local / . git
sudo rm - rf / usr / local / Library
sudo cp - R homebrew / . git / usr / local /
sudo cp - R homebrew / Library / usr / local /
brew update
安装这个用来干嘛恩?反正我是用来在mac端开发调试C# 代码的图解Mac上使用VS Code开发/调试.NET Core代码
在dotnet安装完成之后,在终端运行 dotnet命令,提示Command not found。在mac上使用VS Code编写C#应用程序
三、如果遇到如下问题可以参考下
错误一:
fatal: Not a git repository (or any of the parent directories): .git
解决办法:git init
错误二:
/usr/local/.git: Permission denied
解决办法:
//确保目录归属管理组
sudo chgrp -R admin /usr/local
//确保管理组可读
sudo chmod -R g+w /usr/local
错误三:
fatal: No such remote 'origin'
解决办法:set-url 改成 add
网友评论