0
votes

I am Mac User (Big Sur 11.2.3) and I changed the Terminal from bash to zsh. I had a really hard time to install pip and set up the Environment Path and when I came to the point to install robotframework and all the paraphernalia I get a command not found on zsh. Has someone sorted this out? ~ % pip install robotframework
zsh: command not found: pip

2
Where is pip located in your system? - user1934428

2 Answers

0
votes

Are you using Python3 (which is installed on MacOS BigSur) to install roboframework?

Check path: which pyhton3

PIP-version: python3 -m pip --version

You can change shells zhs/bash/... for you install session, if that helps (to follow the roboFW install-guides).

0
votes

zsh: command not found: pip means that the dir containing pip is not in your $path. There's probably something you forgot to copy from your .bashrc file to your .zshrc file. If you're using PyEnv to manage your Python versions (and you should!), then this is the line in question:

eval "$(pyenv init -)"