-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeError: 'ABCMeta' aiohttp==3.6.0, Python 3.6.9 #4053
Comments
How did you solved it? |
I got the same issue. Any idea about how to solve it? |
Anyone has a reproducer? Also, what is the method for aiohttp installation that you use? |
For my case, aiohttp 3.6.0 |
Try |
Long story short
Cant import aiohttp
pip freeze gives: aiohttp==3.6.0
python3 version: Python 3.6.9
import aiohttp
Traceback (most recent call last):
File "", line 1, in
File "/usr/local/lib/python3.6/site-packages/aiohttp/init.py", line 6, in
from .client import BaseConnector as BaseConnector
File "/usr/local/lib/python3.6/site-packages/aiohttp/client.py", line 63, in
from .client_reqrep import ClientRequest as ClientRequest
File "/usr/local/lib/python3.6/site-packages/aiohttp/client_reqrep.py", line 29, in
from . import hdrs, helpers, http, multipart, payload
File "/usr/local/lib/python3.6/site-packages/aiohttp/multipart.py", line 703, in
class MultipartWriter(Payload):
File "/usr/local/lib/python3.6/site-packages/aiohttp/multipart.py", line 786, in MultipartWriter
headers: Optional[MultiMapping[str]]=None
TypeError: 'ABCMeta' object is not subscriptable
Any known restriction, what I am missing?
The text was updated successfully, but these errors were encountered: