Es tut mir leid, es ist fast ein Memo für mich.
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
Pfadeinstellung
bash
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
Rohrinstallation
easy_install pip
Visual Studio Code Fügen Sie den Einstellungen Folgendes hinzu
json
"python.venvPath": "~/.pyenv"
Recommended Posts