Forums

ImportError: No module named 'apiai'

I was just trying out a new trial web app and am having issue getting it going... the error msg i get is..

2017-09-05 03:57:48,974: 
2017-09-05 03:57:48,974:   File "/home/pyr0t3chr/mysite/flask_app.py", line 4, in <module>
2017-09-05 03:57:48,974:     import apiai
2017-09-05 03:57:48,975: ***************************************************

I am not running this in a virtualenv... i already installed apiai twice using pip and pip3 and apiai shows up in pip/pip3 freeze as well

>> pip install --user apiai
>> pip3 install --user apiai

try pip3.5 install --user apiai or pip3.6 install --user apiai depening on which version of python you're using for your web app?

oh wow... I thought pip 3 covered all versions of python3

thanks a lot that worked like a charm

:)