[provisioning] Ditch pip.conf; pyenv handles local installs better.

This commit is contained in:
Correl Roush 2018-02-28 10:19:36 -05:00
parent 34c6439b83
commit 325e9d112b
2 changed files with 0 additions and 6 deletions

View file

@ -1,2 +0,0 @@
[global]
user = true

View file

@ -32,7 +32,3 @@ if ! [ -d ~/.pyenv/versions/${__PYTHON_VERSION} ]; then
_run "Install python ${__PYTHON_VERSION}" pyenv install ${__PYTHON_VERSION} _run "Install python ${__PYTHON_VERSION}" pyenv install ${__PYTHON_VERSION}
fi fi
pyenv global ${__PYTHON_VERSION} pyenv global ${__PYTHON_VERSION}
if ! [ -d ${HOME}/.pip ]; then
_run "Install .pip" ln -s ${HOME}/dotfiles/.pip ${HOME}/.pip
fi