Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #103487
| From | Nagy László Zsolt <gandalf@shopzeus.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | asyncmongo + python 3: No module named 'errors' |
| Date | 2016-02-25 09:08 +0100 |
| Message-ID | <mailman.119.1456388249.20994.python-list@python.org> (permalink) |
ayncmongo requirements are "pymongo" and "tornado".
I have a fresh installation of Python 3.5, pymongo 3.2 and tornado 4.3,
but I cannot import asyncmongo.
Tracelog below.
P:\WinPython-64bit-3.5.1.2\python-3.5.1.amd64>python
Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64
bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymongo
>>> pymongo.version
'3.2'
>>> import tornado
>>> tornado.version
'4.3'
>>> import asyncmongo
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File
"P:\WinPython-64bit-3.5.1.2\python-3.5.1.amd64\lib\site-packages\asyncmongo\__init__.py",
line 37, in <module>
from errors import (Error, InterfaceError, AuthenticationError,
DatabaseError, RSConnectionError,
ImportError: No module named 'errors'
>>>
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
asyncmongo + python 3: No module named 'errors' Nagy László Zsolt <gandalf@shopzeus.com> - 2016-02-25 09:08 +0100
csiph-web