I type at the "git bash" window:
pip install numpy pip install matplotlibAfter installing these 2 packages, voila! I can run a trivial graphics demo via:
python plot.pyWhere plot.py is:
#! /usr/bin/python import numpy as np import matplotlib.pyplot as plt N = 50 x = np.random.rand(N) y = np.random.rand(N) plt.scatter(x, y) plt.show()This is quite nice as it demonstrates that I can use the python matplotlib library for graphics and that my github setup is working just fine.
Tom's Mineralogy Info / [email protected]