-1

i installed GNUroot and the wheezy package from the app store on my android 4.4.2, after initially panicking when i couldnt run pip3, i discovered in this python3-pip installed but pip3 command not found? that the correct command to use is actually pip-3.2, is there a way to make the system understand that when i run pip3 it should invoke pip-3.2 as the command?

1 Answers1

0

For this task you an use an alias.

alias pip3="pip-3.2"

This will do the job. To make the change permanent append this line to your ~/.bashrc file.

You can use the unalias command to remove a previously set alias again. E.g.: unalias pip3

confetti
  • 2,605