Alistair Buxton
Alistair Buxton
Okay, so those instructions are wrong for Linux. The correct way to do it is to configure picotool with: `cmake -DCMAKE_INSTALL_PREFIX=~/.local ..` And then `make install` (without root). Now the...
Another workaround (if you don't care which version the SDK uses) is to just use cmake's `find_program`: ``` cmake_minimum_required(VERSION 3.16) find_program(PICOTOOL picotool) // ... normal project boilerplate here ... add_custom_target...
The part where this is the only alternative to doing a root install: > Alternatively you can install in a custom path via: > > `cmake -DCMAKE_INSTALL_PREFIX=$MY_INSTALL_DIR -DPICOTOOL_FLAT_INSTALL=1 ..` >...
This uses ko observer subscriptions to detect changes, and an extender to provide rounding on the input field. The extender is mostly taken from the ko documentation, which uses numeric...
Please don't do this:  
It seems the only situation this happens is when I, J or Z are undefined, or in the case of Z an empty string (when the input contains something that...
There are a couple ways to reproduce it with undefined values: * Get mesh, click a square, type "hello" in Z field and then click save * Get mesh, click...
I would much rather see that valuable firmware space used for something that is widely useful and benefits from being fast, like more drawing routines (#32), higher level multiplayer code,...
Yes, get https://github.com/comfyanonymous/ComfyUI/pull/2666 merged.
This happens because of incorrect usage of `ctypes.util.find_library`. From the documentation: > Try to find a library and return a pathname. name is the library name without any prefix like...