ich möchte mir das Programm Lyvi installieren, scheitere jedoch am simplen Aufruf "python3 setup.py install". Es kommt die Meldung "ImportError: No Module named 'Cython'", obwohl ich Cython mittels "pip install cython" installiert habe.
Ich vermute dass das Problem daran liegt, dass ich Python 3 verwende (bzw. verwenden muss für Lyvi), da der Import von Cython nach Python 2 klappt. Der folgende Befehl wird ohne Fehlermeldung ausgeführt:
Code: Alles auswählen
python -c 'import Cython'
Code: Alles auswählen
python3 -c 'import Cython'