Pandas und Matplotlib auf Amazon EC2 installieren

Pandas ist großartig (matplotlib auch). War in der Situation, dass ich es gerne auf einer Amazon EC2 verwenden wollte. Ein Pandas DataFrame kann man nämlich super als csv abspeichern. Der gewöhnte Installationsvorgang hierzu klappt nicht, man landet bei diesem Fehler.

Command „python setup.py egg_info“ failed with error code 1

Aber damit geht es:

sudo yum install update && sudo yum groupinstall "Development Tools" -y && sudo yum install python-devel && libpng-devel freetype-devel -y && sudo pip install matplotlib pandas -y

Credits gehen an: Link


Kommentare

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert