From 325e9d112b82f2cce6ba23f4b0e674d8781f3802 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Wed, 28 Feb 2018 10:19:36 -0500 Subject: [PATCH] [provisioning] Ditch pip.conf; pyenv handles local installs better. --- .pip/pip.conf | 2 -- recipes/python | 4 ---- 2 files changed, 6 deletions(-) delete mode 100644 .pip/pip.conf diff --git a/.pip/pip.conf b/.pip/pip.conf deleted file mode 100644 index b0ba198..0000000 --- a/.pip/pip.conf +++ /dev/null @@ -1,2 +0,0 @@ -[global] -user = true diff --git a/recipes/python b/recipes/python index 89c116f..d64fab2 100644 --- a/recipes/python +++ b/recipes/python @@ -32,7 +32,3 @@ if ! [ -d ~/.pyenv/versions/${__PYTHON_VERSION} ]; then _run "Install python ${__PYTHON_VERSION}" pyenv install ${__PYTHON_VERSION} fi pyenv global ${__PYTHON_VERSION} - -if ! [ -d ${HOME}/.pip ]; then - _run "Install .pip" ln -s ${HOME}/dotfiles/.pip ${HOME}/.pip -fi