Problem: shell language is not in English
$ hello
-bash: hello: コマンドが見つかりません
Solution: Add this to
export LANG="en_US.ISO-8859-1"
Problem: shell language is not in English
$ hello
-bash: hello: コマンドが見つかりません
Solution: Add this to
export LANG="en_US.ISO-8859-1"
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
print(matplotlib.get_backend())
plt.plot(range(10))
plt.savefig('test.png')
Marble