We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 505ab7d commit d9ef76aCopy full SHA for d9ef76a
Makefile
@@ -0,0 +1,18 @@
1
+VENV=.venv
2
+PYTHON=$(shell which python3.4)
3
+
4
+virtual-env:
5
+ $(PYTHON) -m venv $(VENV)
6
7
+deps:
8
+ . $(VENV)/bin/activate && \
9
+ pip3.4 install -r requirements.txt
10
11
+setup: virtual-env deps
12
13
+run:
14
15
+ ipython notebook notebooks/mmpl-preview.ipynb
16
17
+clean:
18
+ rm -rf $(VENV)
requirements.txt
@@ -0,0 +1 @@
+matplotlib
simple-line.py
@@ -0,0 +1,6 @@
+import matplotlib.pyplot as plt
+plt.plot([1,2,3,4])
+plt.ylabel('some numbers')
+plt.savefig("simple-line.png")
0 commit comments