Closed hopezh closed 1 year ago
Hi @hopezh
I can't replicate the issue - it might be a virtual environment issue? Have you tried creating a new environment or uninstall/reinstall the library?
To see what version the program is actually running try adding this to the top of your code:
import dash_bootstrap_templates
print(dash_bootstrap_templates.__version__)
Hi @AnnMarieW
Thank you.
Yes, it turns out that there was an error related to the Pillow
package during my previous installation of dash-bootstrap-templates
:
WARNING: Skipping /opt/homebrew/lib/python3.11/site-packages/Pillow-10.0.1-py3.11.egg-info due to invalid metadata entry 'name'
Reinstalling Pillow
solves the issue.
Now, I can explore and enjoy dash-bootstrap-templates
successfully.
> python
Python 3.10.12 | packaged by conda-forge | (main, Jun 23 2023, 22:39:40) [Clang 15.0.7 ] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import dash_bootstrap_templates
>>> print(dash_bootstrap_templates.__version__)
1.1.0
My code:
The error:
I do have
dash-bootstrap-templates
installed:May I ask why
dash-bootstrap-templates
is not recognized by python?