Open GyeonghunKim opened 2 years ago
👏👏👏 You are awesome! Thank you for making your first issue to pyEPR ' first issue
I would like to work on this issue. Can you assign me to this issue?
Hi @GyeonghunKim, very glad to hear you want to contribute on this issue (and thanks for making it)! Let me know if you run into any problems
After implementing these solutions in Windows10&Python3.10.4, Qiskit-Metal started working:
@WhiteSymmetry Thanks for your comment. This method definitely works for individual users. However, without solving this problem inside pyEPR, every user should do that procedure every time they install the pyEPR and pyEPR-related libraries (such as qiskit-metal). Also, I think this is not appropriate for the CI/CD process.
While running pyepr with python 3.10, importing ImportError occurred related to attrdict while importing pyepr.
My code was just "import pyEPR as epr" and I attached an error message below.
This problem is mainly about the syntax
from collections import Mapping
is deprecated in python 3.10 and replaced tofrom collections.abc import Mapping
.While searching in Google, I found some news about attrdict is no more maintained, and I think this means we cannot expect whether they would fix this issue with python 3.10. Is there any plan to replace the attrdict library with another library or solve this issue differently?
Thanks.
ImportError Traceback (most recent call last) File ~\Anaconda3\envs\pyepr_attrdict_test\lib\site-packages\pyEPR__init__.py:78, in
77 try:
---> 78 from attrdict import AttrDict as Dict
79 except (ImportError, ModuleNotFoundError):
File ~\Anaconda3\envs\pyepr_attrdict_test\lib\site-packages\attrdict__init__.py:5, in
1 """
2 attrdict contains several mapping objects that allow access to their
3 keys as attributes.
4 """
----> 5 from attrdict.mapping import AttrMap
6 from attrdict.dictionary import AttrDict
File ~\Anaconda3\envs\pyepr_attrdict_test\lib\site-packages\attrdict\mapping.py:4, in
1 """
2 An implementation of MutableAttr.
3 """
----> 4 from collections import Mapping
6 import six
ImportError: cannot import name 'Mapping' from 'collections' (C:\Users\aass98998\Anaconda3\envs\pyepr_attrdict_test\lib\collections__init__.py)
During handling of the above exception, another exception occurred:
ImportError Traceback (most recent call last) Input In [3], in <cell line: 1>() ----> 1 import pyEPR as epr
File ~\Anaconda3\envs\pyepr_attrdict_test\lib\site-packages\pyEPR__init.py:80, in
78 from attrdict import AttrDict as Dict
79 except (ImportError, ModuleNotFoundError):
---> 80 raise ImportError("""Please install python package author__ = "Zlatko Minev, Zaki Leghas, and the pyEPR team"
AttrDict
. 81 AttrDict is in PyPI, so it can be installed directly 82 (https://github.com/bcj/AttrDict) using: 83 $ pip install attrdict""") 85 ############################################################################## 86 # Python header 88ImportError: Please install python package
AttrDict
. AttrDict is in PyPI, so it can be installed directly (https://github.com/bcj/AttrDict) using: $ pip install attrdict