Je suis désolé, c'est presque un mémo pour moi.
Homebrew
bash
brew doctor
brew update
Xcode
bash
xcode-select --install
pyenv
Installation
bash
brew install pyenv
pyenv install 3.6.1
pyenv global 3.6.1
Réglage du chemin
bash
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
installation de pip
easy_install pip
Visual Studio Code Ajoutez ce qui suit aux préférences
json
"python.venvPath": "~/.pyenv"
Recommended Posts