diff options
author | Chris <[email protected]> | 2020-05-12 15:13:08 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-12 15:13:08 -0400 |
commit | 6e7409a14b69c7f735d9a75509929db8d817febe (patch) | |
tree | 059686a37a76804e8c042bfd46a4395027067dba /utils | |
parent | 8907895fcc642690664bbfc536e2b015a042c60f (diff) |
removing pip auto install for now
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/install.sh | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/utils/install.sh b/utils/install.sh index bc8ddeff..be7dd06c 100755 --- a/utils/install.sh +++ b/utils/install.sh @@ -89,10 +89,12 @@ asktoinstallnode() { \ } asktoinstallpip() { \ - echo "pip not found" - echo -n "Would you like to install pip now (y/n)? " - read answer - [ "$answer" != "${answer#[Yy]}" ] && installpip + # echo "pip not found" + # echo -n "Would you like to install pip now (y/n)? " + # read answer + # [ "$answer" != "${answer#[Yy]}" ] && installpip + echo "Please install pip3 before continuing with install" + exit } installonmac() { \ @@ -150,3 +152,5 @@ read answer which nvim > /dev/null && installplugins echo "I recommend you also install and activate a font from here: https://github.com/ryanoasis/nerd-fonts" + +echo "I also recommend you add 'set preview_images_method ueberzug' to ~/.config/ranger/rc.conf" |