Not sure if this is on my end, but when installing using pip install molplotly, I could not import without running into the following issues:
ImportError: cannot import name 'json' from itsdangerous
Fixed by running pip install --force-reinstall itsdangerous==2.0.1
ImportError: cannot import name 'BaseResponse' from 'werkzeug.wrappers
Fixed by running pip install --force-reinstall werkzeug==2.0.3
Not sure if this is just an environment problem, or whether the project should be updated to use the newer releases of these packages. Thanks
Not sure if this is on my end, but when installing using
pip install molplotly, I could not import without running into the following issues:ImportError: cannot import name 'json' from itsdangerous
Fixed by running
pip install --force-reinstall itsdangerous==2.0.1ImportError: cannot import name 'BaseResponse' from 'werkzeug.wrappers
Fixed by running
pip install --force-reinstall werkzeug==2.0.3Not sure if this is just an environment problem, or whether the project should be updated to use the newer releases of these packages. Thanks