Lorsque j'achète un nouveau Mac, je souhaite effectuer une installation propre sans copier l'environnement (en quelque sorte) Notez que je fais la même chose à chaque fois
menu> system preferences > Trackpad
Le curseur est léger et rapide!
* Click: Light
* Tracking Speed: fast
Attribuer le passage anglais / kana au bouton de commande
⌘ anglais: https://ei-kana.appspot.com/
menu> system preferences > Keyboard
La clé est légère et rapide!
* KeyRepeat: Fast
* Delay Until Repeat: short
menu> system preferences > Keyboard > Modifier Keys
Swap Ctrl et Caps Lock
defaults write com.apple.finder AppleShowAllFiles -boolean true #Affichage des fichiers cachés
defaults write -g ApplePressAndHoldEnabled -bool false
alias ll='ls -Gla'
alias ls='ls -G'
export LSCOLORS=gxfxcxdxbxegedabagacad
Redémarrez le Finder
killall Finder
1.homebrew http://brew.sh/index_ja.html Les outils de ligne de commande xcode sont automatiquement installés
2.anyenv ** Les éléments liés à l'environnement sont résumés dans anyenv
git clone https://github.com/riywo/anyenv ~/.anyenv
echo 'export PATH="$HOME/.anyenv/bin:$PATH"' >> ~/.bash_profile
echo 'eval "$(anyenv init -)"' >> ~/.bash_profile
exec $SHELL -l
rbenv, pyenv, ndenv
anyenv install rbenv
anyenv install pyenv
anyenv install ndenv
exec $SHELL -l
ruby
Version installable rbenv install-l
rbenv install 2.3.3
rbenv install 2.3.1 #Si nécessaire
rbenv global 2.3.3
rbenv local 2.3.1 # Si nécessaire
rbenv rehash
rbenv exec gem install bundler -v 1.13.6
node
Version installable ndenv install-l
ndenv install v6.9.4
ndenv global v6.9.4
ndenv rehash
python
python utilise anaconda
pyenv install anaconda3-4.2.0
Après tout, j'utilise aussi python3
pyenv install 3.5.3
pyenv global anaconda3-4.2.0
pyenv rehash
#Sertie de conda
# Python 3.5
$ conda create -n tensorflow python=3.5
##liste d'environnement conda
conda info -e
# conda environments:
#
tensorflow /Users/k/.anyenv/envs/pyenv/versions/anaconda3-4.2.0/envs/tensorflow
root * /Users/k/.anyenv/envs/pyenv/versions/anaconda3-4.2.0
#commutation d'environnement conda
#Spécifiez avec le chemin complet car pyenv est utilisé
source /Users/k/.anyenv/envs/pyenv/versions/anaconda3-4.2.0/envs/tensorflow/bin/activate tensorflow
#Sortez de l'environnement
source deactivate
4.mySQL
brew install mysql
mysql.server start
create user 'foo'@'localhost' identified by 'bar-password'
5.emacs
Attribuer la touche méta à l'option dans les paramètres du terminal
terminal > Preferences > keyboard
'Use Option as Meta Key'Sur
brew install emacs --with-cocoa --srgb
brew linkapps emacs
brew install the_silver_searcher
brew install cask
#Remarque: le mal est utilisé
git clone https://github.com/kanadai/emacs.d.git ~/.emacs.d
cd .emacs.d
cask
6.vim
git clone https://github.com/kanadai/dotfiles.git
ln -s dotfiles/.vimrc .vimrc
mkdir -p ~/.vim/bundle
#Récupérer NeoBundle depuis le référentiel
$ git clone git://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
Sourcetree: https://ja.atlassian.com/software/sourcetree SequelPro: https://sequelpro.com/ vscode: https://code.visualstudio.com/ googleDrive: https://www.google.com/intl/ja_ALL/drive/download/ dropbox: https://www.dropbox.com/ja/ liceCap: http://www.cockos.com/licecap/
mecab
brew install mecab
brew install mecab-ipadic
pyenv-virtualenv
brew install pyenv-virtualenv
python -m nom de l'environnement venv
source myvirtualenv/foodtasker/bin/activate
pip install django==1.10
pip freeze
django-admin startproject name
python manage.py runserver
...etc.
Recommended Posts