I'd like to integrate nmigen into a software package of mine which is installed via pip, however, when I do
pip install --upgrade nmigen[builtin-yosys]
or simply
the sim submodule is missing after installation. I tried uninstalling and reinstalling and clearing the pip cache several times but the only thing that worked so far is installing the very latest version
pip install git+https://github.com/nmigen/nmigen.git#egg=nmigen[builtin-yosys]
instead (which I don't want to do inside a software package). I'm using Windows with Python 3.8.2 running in an venv.
Previously, I had migen installed in the same venv, maybe there is some dependency?
I'd like to integrate nmigen into a software package of mine which is installed via pip, however, when I do
or simply
the
simsubmodule is missing after installation. I tried uninstalling and reinstalling and clearing the pip cache several times but the only thing that worked so far is installing the very latest versioninstead (which I don't want to do inside a software package). I'm using Windows with Python 3.8.2 running in an venv.
Previously, I had migen installed in the same venv, maybe there is some dependency?