Python-Tools / sanic-mongo

sanic的mongodb异步工具
Apache License 2.0
14 stars 9 forks source link

pip install error #1

Open chenjr0719 opened 7 years ago

chenjr0719 commented 7 years ago

Hi, I want to use pip to install this module, but there is a error happened.

In your setup.py, there is a typo about required module.

The "1motor>=1.1" should be "motor>=1.1"

Please fix this Thanks

hsz1273327 commented 7 years ago

thanks~,i will fix it soon.

Regards

HSZ.

Tel: +86 15851390734 E-mail: hsz1273327@gmail.com github: https://github.com/hsz1273327 website: http://blog.hszofficial.site/ Please consider the environment before printing this email.

2017-04-26 10:31 GMT+08:00 Jacob notifications@github.com:

Hi, I want to use pip to install this module, but there is a error happened.

In your setup.py, there is a typo https://github.com/Sanic-Extensions/sanic-mongo/blob/master/setup.py#L16 about required module.

The "1motor>=1.1" should be "motor>=1.1"

Please fix this Thanks

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/Sanic-Extensions/sanic-mongo/issues/1, or mute the thread https://github.com/notifications/unsubscribe-auth/AHfIpLlA2GlkwJF22ILGyaggeKb7MQnjks5rzqyCgaJpZM4NISXs .

chenjr0719 commented 7 years ago

Hi, I use pip install from this git alternatively. And the installation is success, but when I use it in my code, it still have error.

The error:

Traceback (most recent call last):
  File "main.py", line 4, in <module>
  from sanic_mongo import Mongo
  File "/home/jacob/Python/Part_Time/website/VENV/lib/python3.5/site-packages/sanic_mongo/__init__.py", line 9, in <module>
  from sanic_mongo.mongo import Core as MongoCore
  File "/home/jacob/Python/Part_Time/website/VENV/lib/python3.5/site-packages/sanic_mongo/mongo.py", line 17, in <module>
  from sanic_mongo.standalone import MongoConnection
ImportError: No module named 'sanic_mongo.standalone'

This is because of you were missed to add sanic_mongo.standalone in setup.py.

It should looks like:

packages=['sanic_mongo', 'sanic_mongo.standalone'],

After this modify, I can import with no error. But still can't use. :cry: :cry: :cry: Maybe I will open another issue after some test.

Thanks