flaport / fdtd

A 3D electromagnetic FDTD simulator written in Python with optional GPU support
https://fdtd.readthedocs.io
MIT License
454 stars 116 forks source link

development dependencies not downloading #64

Closed KyrellosIbrahim closed 1 year ago

KyrellosIbrahim commented 1 year ago

I installed most of the requirements through terminal, however when i go to do the command"pip install -e fdtd[dev]" it gives me the message saying "zsh: no matches found: fdtd[dev]". I have an M2 macbook air and am running python 3.10.9. Is there any way i can work around this issue?

flaport commented 1 year ago

on zsh the [ and ] need to be escaped. Try

pip install fdtd\[dev\]

or alternatively you can also quote it

pip install "fdtd[dev]"
flaport commented 1 year ago

closing this for now