Your provided syntax in the README is not correct (anymore) I would say. Installing from the requirements.txt is rather unusual for conda, but would theoretically work with
conda env create -n livefft -f requirements.txt
The problem with that case is, that version dependencies are not properly checked. So in my case qt version 5.9.7 got installed, which is not compatible with this implementation I believe.
conda install "qt<5" pyside pyaudio pyqtgraph scipy numpy
The same also works if you add the line qt<5 to the requirements.txt and use aforementioned command to run it. But I don't know if that would break your other install path via apt.
Your provided syntax in the README is not correct (anymore) I would say. Installing from the
requirements.txtis rather unusual for conda, but would theoretically work withconda env create -n livefft -f requirements.txtThe problem with that case is, that version dependencies are not properly checked. So in my case
qtversion 5.9.7 got installed, which is not compatible with this implementation I believe.conda install "qt<5" pyside pyaudio pyqtgraph scipy numpyThe same also works if you add the line
qt<5to therequirements.txtand use aforementioned command to run it. But I don't know if that would break your other install path viaapt.