Adam Suban-Loewen
Adam Suban-Loewen
I have an alternative solution, that runs in a single (defined) job, which has worked well for me. The idea is to use an extra matrix variable on the build...
Another alternative, if you don't have a preference for which matrix build triggers upload, is to skip the matrix include thing and use step conditionals like `if: strategy.job-index == 0`;...
Thanks @walfie and @trung! I found that I had to tweak the search and replace a little, so I ended up with: ``` text="${text//$'%'/%25}" text="${text//$'\n'/%0A}" text="${text//$'\r'/%0D}" echo "::set-env name=value::$text" ```...
> On my device: > > ```shell > git clone https://github.com/Querela/pyusb.git && cd pyusb > python3 -m venv venv > source venv/bin/activate > pip install -e . > > termux-usb...
> You may need to put libusb-1.0.0.so in the right place in order for pyusb to work. Termux does not use the default location like `/usr/local/lib` or `/usr/lib`. Thanks, yeah...
It looks like llvmlite uses llvm 7.0 now, would that help? https://llvmlite.readthedocs.io/en/latest/admin-guide/install.html
It's been awhile since I've used it, but I think you can use the JavaScript `debugger` command, just add it to a new line in your pscript similar to how...
> I added requirements.txt. And checked on my PC - working ok. > > ``` > tensorflow>=2.3.2 > keras_applications>=1.0.8 > classification_models_3D>=1.0.3 > efficientnet_3D>=1.0.2 > ``` > > Please install them...
Sure: ``` Python 3.8.12 | packaged by conda-forge | (default, Jan 30 2022, 23:53:36) Type 'copyright', 'credits' or 'license' for more information IPython 8.1.1 -- An enhanced Interactive Python. Type...
``` keras_applications==1.0.8 classification_models_3D==1.0.3 efficientnet_3D==1.0.2 ```