I have python2.7 and python3.5 on mac. I am using python3 and change it as default (alias python=python3
)
With instruction, I install twilio by pip install twilio
, but it shows
Requirement already satisfied (use --upgrade to upgrade): twilio in /Library/Python/2.7/site-packages/twilio-5.4.0-py2.7.egg
How can I install twilio on python3 packages so that I can import twilio on python3?
Thanks in advance!