Cyrille Rossant
Cyrille Rossant
Yes that's doable! Instead of applying an image filter Python-side, you can detect the face with something like OpenCV. In the developer tools, look for potential errors in the "JavaScript...
Are you using IPython 3.0? If so, that's expected. The widget interface has changed between 2.0 and 3.0 and I haven't had the time to upgrade the examples yet (it's...
Yeah I had to convert to the latest nbformat because the notebooks wouldn't work with IPython 3.0... but then the widgets are broken! Fortunately I think you should be able...
I think there should be Play/Pause buttons in Google Chrome, not sure about Firefox.
The order shouldn't matter; what is the exact error message? Also the import should be `import matplotlib.pyplot as plt` (there is a dot)
Thanks! this is a bug with conda matplotlib on headless systems like AWS, and inverting the order does seem to be an easy "fix". See https://github.com/conda/conda/issues/1051. I've changed the name...
Good to know thanks. To install pyqt4 with conda use `conda install pyqt`.
Can you try: ``` python df['Berri1'].rolling(window=n).mean().dropna().plot() ``` (this is untested) If it works, please feel free to send a Pull Request!
Status update: - I repaired my wheel with `--plat linux_x86_64` but then I realized this wouldn't work with PyPI. Of course I wasn't able to build a manylinux wheel on...
@mayeut makes sense, thanks. Are there guidelines somewhere about how to properly test a manylinux wheel on a sufficiently wide range of distributions to ensure it reaches the bar for...