Added a hint for pip installations without using `--no-compile`.
Closes #31
This commit is contained in:
parent
26d81d6475
commit
bb3087c996
|
|
@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- iBoM output: file name patterns are allowed for the `netlist_file` option.
|
||||
- File name patterns: %F is the name of the source file without extension, but
|
||||
with the path.
|
||||
- A hint for pip installations without using `--no-compile`.
|
||||
### Fixed
|
||||
- Now we support missing field names in schematic library entries.
|
||||
|
||||
|
|
|
|||
|
|
@ -62,6 +62,7 @@ def _import(name, path):
|
|||
except ImportError as e:
|
||||
trace_dump()
|
||||
logger.error('Unable to import plug-ins: '+str(e))
|
||||
logger.error('Make sure you used `--no-compile` if you used pip for installation')
|
||||
exit(WRONG_INSTALL)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue