e to call up pip3 by typing "pip3" and would rather just type "pip" how can I do this?
Asked
Active
Viewed 38 times
0
-
3Does this answer your question? [How to change pip3 command to be pip?](https://stackoverflow.com/questions/44455001/how-to-change-pip3-command-to-be-pip) – Random Davis Nov 17 '20 at 23:33
-
1You need to make an alias (e.g. symlink) for `pip` that points to `pip3`, and set it in your PATH such that it gets resolved first before any other executables called `pip` are found. – flakes Nov 17 '20 at 23:37
-
1@flakes you could also make a literal alias: `alias pip=pip3` in your bash_profile, e.g. – acushner Nov 18 '20 at 00:33
-
What operating system are you on? (Windows/Linux/MacOS) – benji Nov 18 '20 at 06:17