| Summary: | Latest nMigen causing ModuleNotFoundError's f28a3e65ca5ebaa5 | ||
|---|---|---|---|
| Product: | Libre-SOC's first SoC | Reporter: | Cole Poirier <colepoirier> |
| Component: | Source Code | Assignee: | Luke Kenneth Casson Leighton <lkcl> |
| Status: | RESOLVED INVALID | ||
| Severity: | enhancement | CC: | libre-soc-bugs |
| Priority: | --- | ||
| Version: | unspecified | ||
| Hardware: | PC | ||
| OS: | Linux | ||
| NLnet milestone: | --- | total budget (EUR) for completion of task and all subtasks: | 0 |
| budget (EUR) for this task, excluding subtasks' budget: | 0 | parent task for budget allocation: | |
| child tasks for budget allocation: | The table of payments (in EUR) for this task; TOML format: | ||
|
Description
Cole Poirier
2020-06-20 02:28:01 BST
This commit still works for calling pywriter.py 133d4f47d15af67118b00f85c18ed2ffb5d855c2 (In reply to Cole Poirier from comment #0) > File "/home/colepoirier/src/nmigen/nmigen/_yosys.py", line 21, in <module> > import importlib_resources # py3.6- shim > ModuleNotFoundError: No module named 'importlib_resources' > ``` this is because the module does not exist because it is listed in the setup.py dependencies which you had not run. as a new additional dependency, because you had not run "python3 setup.py develop", that python library had not yet been installed. when you ran develop, it called "pip3 install importlib_resources" on discovering that the dependency was not installed. |