From a369b62674b609e270d84a5770c5f2d3d35ac210 Mon Sep 17 00:00:00 2001 From: Chris Greening Date: Sat, 8 Oct 2022 18:01:14 +0100 Subject: [PATCH] Uodate readme --- README.md | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8973d9e..98c8c95 100644 --- a/README.md +++ b/README.md @@ -13,15 +13,8 @@ jupyter notebook ## Getting KiCad set up -This is a bit of a pain as KiCad comes with its own python installation. You'll need to install any required dependencies into this installation. +Add the plugin to KiCad by symbolically linking it to the `kicad_plugins` directory. ```bash -cd /Applications/KiCad/KiCad.app/Contents/Frameworks/Python.framework/Versions/Current/bin -./pip3 install numpy scikit-spatial -``` - -You can now link any plugins that you want to make available to KiCad by symbolic linking them into the `kicad_plugins` directory. - -```bash -ln -s ${PWD}/coil_plugin_v2.py ~/Documents/KiCad/6.0/scripting/plugins/coil_plugin_v2.py +ln -s ${PWD}/coil_plugin.py ~/Documents/KiCad/6.0/scripting/plugins/coil_plugin.py ```