You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building the docs with the make html command, if you already have a convert module somewhere else, you can get an error:
File "/Users/sosborne/miniconda3/envs/astroconda/lib/python3.6/subprocess.py", line 438, in run
output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command '['convert', '--version']' returned non-zero exit status 1.
This should probably be fixed by checking if the convert module matplotlib is looking for is actually the correct module, and finding a work around if convert is from another package
The text was updated successfully, but these errors were encountered:
Took a quick look at this – I think that _get_executable_info should probably be more forgiving, or raise a smaller subset of errors.
e.g. this error got raised via animation.ImageMagickBase, which tries to catch a FileNotFoundError, but _get_executable_info can raise other errors quite reasonably.
When building the docs with the
make html
command, if you already have aconvert
module somewhere else, you can get an error:This should probably be fixed by checking if the
convert
modulematplotlib
is looking for is actually the correct module, and finding a work around ifconvert
is from another packageThe text was updated successfully, but these errors were encountered: