-
I have installed skidl in a venv (3.12.3), and can't get search working. Any advice would be appreciated.
|
Beta Was this translation helpful? Give feedback.
Answered by
devbisme
Sep 25, 2024
Replies: 1 comment 1 reply
-
The problem is The solution is to use either |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
blark
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The problem is
skidl
defaults to using KiCad 5 as the default backend tool. KiCad 5 uses part libraries that end with.lib
. Since you're using KiCad 8 (I assume), your libraries end with.kicad_sym
andsearch
won't see them so it finds nothing.The solution is to use either
search("opamp", tool=KICAD8)
or set the default tool to KiCad 8 usingset_default_tool(KICAD8)
and then runsearch("opamp")
.