python no module name pika when importing pika

微笑、不失礼 提交于 2019-11-30 18:18:47

问题


I installed pika for python running on a mac

sudo pip install pika==0.9.8

I make sure is installed, this is the response when trying to reinstall,

Requirement already satisfied (use --upgrade to upgrade): pika==0.9.8 in /usr/local/lib/python2.7/site-packages

but when i import pika on a *.py I get,

ImportError: No module named pika

my python version

python --version
Python 2.7.5

how to make this module recognised by Python? thanks!

edit 1

I call the import like this

import pika

which gives the error, I can fix this temporaritly with,

export PYTHONPATH=$PYTHONPATH:/usr/local/lib/python2.7/site-packages

So how to make the path permanent? thanks!


回答1:


You can add that export command to your ~/.bash_login file.




回答2:


Download and run pip from here:

https://pip.pypa.io/en/latest/installing.html

and then open command window and goto the Scripts folder of the installed python in C and type the following command:

C:\Python34\Scripts>pip install pika




回答3:


More likely you are running several versions of pip and python. Check your 'pip' and 'python' versions - you should use a 'pip' version corresponding to your 'python' version:

# python --version
Python 2.7.5
# pip --version
pip 9.0.1 from /usr/lib/python3.4/site-packages/pip-9.0.1-py3.4.egg (python 3.4)

As you can see 'pip' will install modules for a python version different from the one I'm using. I used 'pip2' command for 'python2' (use pip3 for python3):

# pip2 install pika



回答4:


git clone https://github.com/pika/pika.git
cd pika
python setup.py install

Installs pika 1.0.1b with 2.7

or

apt install python3
apt install python3-pip
pip3 install pika



回答5:


Go to Scripts in your python folder and drag and drop pip.exe on command prompt and type install pika.

eg- C:\Python27\Scripts\pip.exe install pika



来源:https://stackoverflow.com/questions/19673669/python-no-module-name-pika-when-importing-pika

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!