flaport / fdtd

A 3D electromagnetic FDTD simulator written in Python with optional GPU support

Home Page:https://fdtd.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

development dependencies not downloading

KyrellosIbrahim opened this issue · comments

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?

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

pip install fdtd\[dev\]

or alternatively you can also quote it

pip install "fdtd[dev]"

closing this for now