Install HomeBrew
## Install xcode utils
xcode-select --install
## Install Brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
## Check that everything is Ok
brew doctor
## To update HomeBrew
brew updateInstall ZSH
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"Install Git
brew install gitInstall Sublime Text
brew install --cask sublime-textCheck this sample of my .zshrc
- Run this :
open -a Sublime\ Text /Users/$(whoami)/.zshrcInstall Fork
brew install --cask forkInstall iTerm
brew install --cask iterm2## Install Power10k :
git clone https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
### change them in .zshrc : ZSH_THEME="powerlevel10k/powerlevel10k"
## Install Auto-Suggestion :
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
### Edit .zshrc & add in plugins array : plugins=(zsh-autosuggestions)
## Install Syntaxe Hylight :
brew install zsh-syntax-highlighting
## Copy/Paste in .zshrc before rvm Config : source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh >> /Users/$(whoami)/.zshrc
## Install Completion :
brew install zsh-completions
### Edit .zshrc & add in plugins : plugins=(zsh-autosuggestions)
## Install rvm
curl -L https://get.rvm.io | bash -s stable
### Add this somewhere in .zshrc : source /Users/$(whoami)/.rvm/scripts/rvm
## Install Ruby
rvm install ruby-2.6.5Install CocoaPods :
gemi cocoapodsbrew tap adoptopenjdk/openjdk
brew install --cask adoptopenjdk8
echo $"\nexport JAVA_HOME=/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/\n" >> /Users/$(whoami)/.zshrc
brew install --cask android-studio
brew install gradle
brew install android-sdk
export GRADLE_HOME=/usr/local/opt/gradle
export ANDROID_HOME=/usr/local/opt/android-sdk
export PATH=$GRADLE_HOME/bin:$PATH
export PATH=$ANDROID_HOME/tools:$PATH
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=$ANDROID_HOME/build-tools/19.1.0:$PATH
## Update Android SDK (Deprecated)
# sudo android update sdk --no-ui --filter platform-tools,tools
## You can run update all by using : sudo android update sdk --no-ui --all
sdkmanager "platform-tools" "platforms;android-28"- Thanks to CodePath for there greate contribution !
- SDKManager
Install Flutter
## Install Flutter
brew install --cask flutter
## Check That everythong is OK
flutter doctorYour good to go !