Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

Commit

Permalink
Update pip install to prevent need to sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
disusered committed Dec 3, 2019
1 parent 8349fe0 commit a7a4ea7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions bootstrap/dependencies
Expand Up @@ -3,10 +3,12 @@
# Neovim
case $(uname) in
'Darwin')
sudo easy_install pip virtualenv virtualenvwrapper
sudo pip install --upgrade setuptools pip
sudo pip3 install --upgrade setuptools pip
pip install --user neovim
chown -R `whoami` /usr/local/lib/python2.7/site-packages/
chown -R `whoami` /usr/local/lib/python3.7/site-packages/
# sudo easy_install pip virtualenv virtualenvwrapper
pip2 install --upgrade setuptools pip
pip3 install --upgrade setuptools pip
pip2 install --user neovim
pip3 install --user neovim
;;
'Linux')
Expand Down

0 comments on commit a7a4ea7

Please sign in to comment.