Python Forum

Full Version: Matplolib graphic from batch
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

Sorry I don't know if is this the correct section
of the forum

I used this script taken from an example
of matplolib

The script is running from the idle but if
I run it from a batch:

<\cd \Python36
python C:\Temp_DD1\Duca\PY_dep\PlotTest.py
rem pause\>

file I got an error:
Error:
File "C:\Temp_DD1\Duca\PY_dep\PlotTest.py", line 1, in <module> import matplotlib ModuleNotFoundError: No module named 'matplotlib'
Here the code of the script:

import matplotlib
import matplotlib.pyplot as plt
import numpy as np

# Data for plotting
t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)

fig, ax = plt.subplots()
ax.plot(t, s)

ax.set(xlabel='time (s)', ylabel='voltage (mV)',
       title='About as simple as it gets, folks')
ax.grid()
fig.savefig("test.png")
plt.show()
I got such type of error when a package is not installed: I would say that it's your case with matplotlib (or maybe be are you using a specific distribution?)
any possibility that you have more than one python installation or using virtualenvironment?