简体   繁体   中英

No module named 'importlib.metadata'

I'm trying to install Odoo 15.0 on mac (python 3.7) when i come to run the command: pip3 install -r requirements.txt I got this error message: Traceback (most recent call last): File "/usr/local/opt/python@3.7/bin/pip3", line 10, in <module> from importlib.metadata import distribution ModuleNotFoundError: No module named 'importlib.metadata'

Try installing this lib manually, using:

pip install importlib-metadata

or

pip3 install importlib-metadata

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