ImportError para Gnuplot en terminal python
centos (2)
Tengo Gnuplot 4.2 patchlevel 6 instalado en mi sistema Centos 6. Sin embargo, cada vez que trato de importar Gnuplot en el terminal python, aparece un mensaje de error que dice que no hay un módulo llamado Gnuplot:
''>>> import Gnuplot
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named Gnuplot`
Por favor ayuda. Gracias.
tratar:
pip install gnuplot-py
Si no funciona, intente descargar el paquete de http://gnuplot-py.sourceforge.net/ e instálelo.
pip install gnuplot-py
no funcionó para mí
Collecting gnuplot-py
Could not find a version that satisfies the requirement gnuplot-py (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external gnuplot-py to allow).
No matching distribution found for gnuplot-py
pero siguiendo hizo el trabajo:
wget http://downloads.sourceforge.net/project/gnuplot-py/Gnuplot-py/1.8/gnuplot-py-1.8.tar.gz
tar xzf gnuplot-py-1.8.tar.gz
cd gnuplot-py-1.8/
python setup.py install