Dependências não atendidas ao tentar instalar efeitos de pulsos

0

Eu baixei o arquivo .zip do GitHub para poder ter a versão mais recente, mas, quando tento executar o ./pulseeffects , ele continua criando módulos que não são encontrados. numpy foi o primeiro que instalei com o pip. Agora ele não pode encontrar scipy, então eu tentei instalá-lo da mesma maneira sem efeito. Estou executando o Ubuntu GNOME 17.04 se isso faz diferença.

No protocol specified
Unable to init server: Could not connect: Connection refused
No protocol specified
Unable to init server: Could not connect: Connection refused
Traceback (most recent call last):
  File "./pulseeffects", line 4, in <module>
    from PulseEffects.application import Application
  File "/home/amolith/Downloads/Programs/pulseeffects-master/PulseEffects/application.py", line 18, in <module>
    from PulseEffects.sink_input_effects import SinkInputEffects
  File "/home/amolith/Downloads/Programs/pulseeffects-master/PulseEffects/sink_input_effects.py", line 7, in <module>
    from scipy.interpolate import CubicSpline
ImportError: No module named 'scipy'
    
por Amolith 22.07.2017 / 00:33

1 resposta

0

Leia atentamente o arquivo README.MD do github, existem várias dependências:

Required libraries:

    Python 3
    Python configparser (Python versions higher than 3.5.0 come with it. There is no need to install a separate package)
    PyGobject 3
    Python Cairo
    Python Numpy
    Python Scipy (0.18 or above)
    Gtk 3.18 or above
    Gstreamer, Gstreamer Plugins Good, Gstreamer Plugins Bad and Gstreamer Python (Since version 1.4.3 Pulseeffects needs Gstreamer 1.12 or above)
    swh-plugins from Ladspa
    
por Charles Green 22.07.2017 / 01:37