How do I see the version of Tidy3D I am using?#
| Date | Category | 
|---|---|
| 2023-12-03 11:48:05 | Installation and Help | 
In python, after importing tidy3d, run
print(tidy3d.__version__)
Or, do this through the command line via
python -c "import tidy3d; print(tidy3d.__version__)"
ββββ