plot multiple coils

This commit is contained in:
Chris Greening 2022-10-02 16:50:49 +01:00
parent 5bd727aa48
commit ca1193d2ba
3 changed files with 176 additions and 42 deletions

27
README.md Normal file
View file

@ -0,0 +1,27 @@
# Getting set up
## Running the notebook locally
Make sure you have python3 installed. Then run the following commands:
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
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.
```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 ~/Library/Application Support/kicad/scripting/plugins/XXXXXX.py XXXXXX.py
```

File diff suppressed because one or more lines are too long

View file

@ -3,3 +3,4 @@ jupyter
numpy numpy
pandas pandas
scikit-spatial scikit-spatial
scipy