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
I get the following error when importing javac_parser with Python 3.10 and above:
Traceback (most recent call last):
File ..., line 1, in </module><module>
import javac_parser
File "/usr/local/lib/python3.10/dist-packages/javac_parser/__init__.py", line 19, in </module><module>
from .javac_parser import Java
File "/usr/local/lib/python3.10/dist-packages/javac_parser/javac_parser.py", line 28, in </module><module>
from py4j.java_gateway import JavaGateway, launch_gateway, GatewayParameters
File "/usr/local/lib/python3.10/dist-packages/py4j/java_gateway.py", line 2336, in </module><module>
__import__("py4j.java_collections")
File "/usr/local/lib/python3.10/dist-packages/py4j/java_collections.py", line 13, in </module><module>
from collections import (
ImportError: cannot import name 'MutableMapping' from 'collections' (/usr/lib/python3.10/collections/__init__.py)
This appears to be coming from your usage of py4j. Can you update py4j to get this working again?
The text was updated successfully, but these errors were encountered:
I get the following error when importing
javac_parser
with Python 3.10 and above:This appears to be coming from your usage of
py4j
. Can you updatepy4j
to get this working again?The text was updated successfully, but these errors were encountered: