You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just installed Python 3 on Ubuntu Linux 22. Installed Tailon with pip and tried to tail syslog:
$ pip install tailon
$ tailon -f /var/log/syslog
Traceback (most recent call last):
File "/usr/local/bin/tailon", line 5, in
from tailon.main import main
File "/usr/local/lib/python3.10/dist-packages/tailon/main.py", line 16, in
from tornado import ioloop, httpserver
File "/usr/local/lib/python3.10/dist-packages/tornado/httpserver.py", line 34, in
from tornado.http1connection import HTTP1ServerConnection, HTTP1ConnectionParameters
File "/usr/local/lib/python3.10/dist-packages/tornado/http1connection.py", line 29, in
from tornado import httputil
File "/usr/local/lib/python3.10/dist-packages/tornado/httputil.py", line 106, in
class HTTPHeaders(collections.MutableMapping):
AttributeError: module 'collections' has no attribute 'MutableMapping'
Any idea to work around this issue?
The text was updated successfully, but these errors were encountered:
Just installed Python 3 on Ubuntu Linux 22. Installed Tailon with pip and tried to tail syslog:
$ pip install tailon
$ tailon -f /var/log/syslog
Traceback (most recent call last):
File "/usr/local/bin/tailon", line 5, in
from tailon.main import main
File "/usr/local/lib/python3.10/dist-packages/tailon/main.py", line 16, in
from tornado import ioloop, httpserver
File "/usr/local/lib/python3.10/dist-packages/tornado/httpserver.py", line 34, in
from tornado.http1connection import HTTP1ServerConnection, HTTP1ConnectionParameters
File "/usr/local/lib/python3.10/dist-packages/tornado/http1connection.py", line 29, in
from tornado import httputil
File "/usr/local/lib/python3.10/dist-packages/tornado/httputil.py", line 106, in
class HTTPHeaders(collections.MutableMapping):
AttributeError: module 'collections' has no attribute 'MutableMapping'
Any idea to work around this issue?
The text was updated successfully, but these errors were encountered: