Skip to content

Instantly share code, notes, and snippets.

@belonesox
Created November 24, 2020 10:26
Show Gist options
  • Save belonesox/271385f97871d0ad3649c3fded368e1c to your computer and use it in GitHub Desktop.
Save belonesox/271385f97871d0ad3649c3fded368e1c to your computer and use it in GitHub Desktop.
Issue with nuitka Infinite optimization loop with cv2/skimage
#!/bin/sh
export PATH="/usr/lib64/ccache:$PATH"
python3 -m nuitka --verbose --show-progress --show-scons --standalone --follow-imports --recurse-not-to=astropy --recurse-not-to=sympy --recurse-not-to=dask --recurse-not-to=ipywidgets --recurse-not-to=ipython_genutils --recurse-not-to=ipykernel --recurse-not-to=IPython --recurse-not-to=pexpect --recurse-not-to=nbformat --recurse-not-to=numpydoc --recurse-not-to=matplotlib --recurse-not-to=pandas --recurse-not-to=pytest --recurse-not-to=nose --recurse-not-to=systemd --include-module=skimage --plugin-enable=numpy test-scipy.py >build.log 2>&1
import cv2
import scipy
print(scipy.__version__)
print(cv2.__version__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment