8000
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 595868a commit 87c968bCopy full SHA for 87c968b
lib/matplotlib/animation.py
@@ -262,6 +262,10 @@ def isAvailable(cls):
262
Check to see if a MovieWriter subclass is actually available by
263
running the commandline tool.
264
'''
265
+ if platform.system() == 'Windows' and cls.bin_path() == 'convert':
266
+ # On Windows, the full path to convert must be specified in
267
+ # matplotlibrc since convert is also the name of a system tool.
268
+ return False
269
try:
270
p = subprocess.Popen(cls.bin_path(),
271
shell=False,
0 commit comments