I've run into this several times, but another package that is required for dfgui to work is cython. It's something to do with mkl. I've copied the original error message below:
(csv2cash) λ pip install git+https://github.com/bluenote10/PandasDataFrameGUI
Collecting git+https://github.com/bluenote10/PandasDataFrameGUI
Cloning https://github.com/bluenote10/PandasDataFrameGUI to c:\users\jrwrigh\appdata\local\temp\pip-req-build-9n9fz7a0
Building wheels for collected packages: dfgui
Running setup.py bdist_wheel for dfgui ... done
Stored in directory: C:\Users\jrwrigh\AppData\Local\Temp\pip-ephem-wheel-cache-7a9uvjod\wheels\cd\d0\c1\a33ecf60055abfb858d1aba1a9be216389d7582314a536f0e0
Successfully built dfgui
mkl-random 1.0.1 requires cython, which is not installed.
mkl-fft 1.0.0 requires cython, which is not installed.
Installing collected packages: dfgui
Successfully installed dfgui-0.1
I have no idea where this dependency is coming from because dfgui's setup.py actually does not specify the dependencies at all (again, because wxpython is not pip installable).
I've run into this several times, but another package that is required for
dfgui
to work iscython
. It's something to do with mkl. I've copied the original error message below: