I try to get pika working
In Bash I issued pip install pika It now reports
20:59 ~ $ pip install pika
Requirement already satisfied (use --upgrade to upgrade): pika in ./.local/lib/python2.7/site-packages
I can indeed browse to .local and find the pika stuff
In Python 2.7 console I try to import and get stopped by an error message
import pika
Traceback (most recent call last):
File "stdin", line 1, in <module>
ImportError: No module named pika
What is my mistake here?