简体   繁体   中英

How can i solve AttributeError: module 'dis' has no attribute 'COMPILER_FLAG_NAMES' in anaconda3/envs/untitled/lib/python3.7/inspect.py

i am trying implement from scipy.spatial import distance as dist library however it gives me File "/home/afeyzadogan/anaconda3/envs/untitled/lib/python3.7/inspect.py", line 56, in for k, v in dis.COMPILER_FLAG_NAMES.items(): AttributeError: module 'dis' has no attribute 'COMPILER_FLAG_NAMES' error how can i solve it?

''' for k, v in dis.COMPILER_FLAG_NAMES.items(): mod_dict["CO_" + v] = k '''

We ran across this issue in our code with the same exact AttributeError. Turns out it was a totally unrelated file in the current directory called dis.py .

i am trying implement from scipy.spatial import distance as dist library however it gives me File "/home/afeyzadogan/anaconda3/envs/untitled/lib/python3.7/inspect.py", line 56, in for k, v in dis.COMPILER_FLAG_NAMES.items(): AttributeError: module 'dis' has no attribute 'COMPILER_FLAG_NAMES' error how can i solve it?

''' for k, v in dis.COMPILER_FLAG_NAMES.items(): mod_dict["CO_" + v] = k '''

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM