I successfully installed:
python3 -m pip install gluoncv
Then I successfully installed:
pip3 install virtualenv
But I encountered an issue zsh: command not found: virtualenv when I tried to install the following:
virtualenv --python=/usr/bin/python2.7 python27
What remedy would you suggest? My goal is to instal PIP and use MLModels with Xcode. I'm a beginner programmer, so hand holding & talking to me like I'm 5 year old is appreciated! Thanks!
Try
python3 -m virtualenv --python=/usr/bin/python2.7 python27As a rule of thumb, if you installed it through
python3 -m pip, you run it usingpython3 -m ...