Added a hint for pip installations without using `--no-compile`.

Closes #31
This commit is contained in:
Salvador E. Tropea 2020-12-16 12:40:29 -03:00
parent 26d81d6475
commit bb3087c996
2 changed files with 2 additions and 0 deletions

View File

@ -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.

View File

@ -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)