apache / rocketmq-client-python

Apache RocketMQ python client
https://rocketmq.apache.org/
Apache License 2.0
271 stars 95 forks source link

rocketmq-client-python which using pip install has no ConsumeStatus #113

Open yinhuanyi opened 3 years ago

yinhuanyi commented 3 years ago
  1. Please describe the issue you observed: rocketmq-client-python which using pip install has no ConsumeStatus Class

  2. Please tell us about your environment: mac os

  3. Other information (e.g. detailed explanation, logs, related issues, suggestions on how to fix, etc): I follow the README.md file, using 'pip install rocketmq-client-python' command to install the package. When I finish, I find that I cannot import ConsumeStatus Class. Then I download the source code from github, using python setup.py to install. It works. But Why???

ifplusor commented 2 years ago

What's version do you install?

luxu1220 commented 2 years ago

uninstall and reinstall may help. maybe you install rocketmq-client-python before librocketmq. you need to reinstall rocketmq-client-python after install librocketmq

Ambermeow commented 2 years ago

I met the exactly same problem as you did. Every-installing-things looked good, but finally I could import mostly the rocketmq.client package except the ConsumeStatus ! And then I found that I should use debian library instead of CentOS library...

Hope it helps

thomaslv2 commented 2 years ago

You may have installed other rocketmq client, such as rocketmq module, you can try: pip uninstall rocketmq pip install rocketmq-client-python Hope this works for you!

reesezxf commented 1 month ago

uninstall and reinstall may help. maybe you install rocketmq-client-python before librocketmq. you need to reinstall rocketmq-client-python after install librocketmq

this helps