From bfe256ca6aaf697f8914fa9af988e4fd59b62a71 Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Tue, 6 Feb 2018 19:58:19 +0900 Subject: [PATCH] Add alias so that pip cannot be used in favor of pipenv To install pipenv do following: \pip install pipenv --- shrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shrc b/shrc index 4bc6c22..e466b0e 100755 --- a/shrc +++ b/shrc @@ -313,6 +313,9 @@ __safe_alias py2=python2 __safe_alias ipy=ipython __safe_alias ipy3=ipython3 __safe_alias ipy2=ipython2 +__safe_alias pip="echo Use pipenv! 1>&2; false" +__safe_alias pip2="echo Use pipenv! 1>&2; false" +__safe_alias pip3="echo Use pipenv! 1>&2; false" __safe_alias rl=rlwrap __safe_alias igosh=gosh-rl # Sometimes SHELL cannot be used. For example, when running bash inside zsh