Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Could not find convert #62

Open
UglyMelon007 opened this issue Jul 31, 2016 · 7 comments
Open

Could not find convert #62

UglyMelon007 opened this issue Jul 31, 2016 · 7 comments
Labels

Comments

@UglyMelon007
Copy link

image

@UglyMelon007
Copy link
Author

I install convert ,it prompt node-waf node found but the node-waf package has been replaced by node-gyp o.o

@vvo
Copy link
Owner

vvo commented Aug 22, 2016

Hi @UglyMelon007 this seems a rather windows-related bug. I am not very skilled in those since I am using Linux.

It seems some people managed to get gifify working on windows still like @aledelgo, maybe he can help you?

@vvo vvo added the question label Aug 22, 2016
@regosen
Copy link

regosen commented Sep 14, 2016

I'm having the same problem on OSX:

screen shot 2016-09-14 at 3 44 39 pm

But I already installed that using the instructions here: https://github.com/vvo/gifify#requirements

convert, the famous ImageMagick ($ brew install imagemagick --with-fontconfig)

@regosen
Copy link

regosen commented Sep 14, 2016

I think I figured out the problem. I had previously installed an older version of imagemagick and had to re-link it:

brew link --overwrite imagemagick

@vvo
Copy link
Owner

vvo commented Sep 15, 2016

Thanks!

@gkhays
Copy link

gkhays commented Apr 2, 2017

TL;DR: Create a Windows batch file in the path used by gifify, e.g.

"C:\Program Files\ImageMagick-7.0.5-Q16\magick.exe" %*

I ran into the problem on Windows 10. There is already a system utility named convert that is used for file system conversion.

C:\WINDOWS\system32>which convert
C:\WINDOWS\system32\convert.EXE

C:\WINDOWS\system32>convert /?
Converts a FAT volume to NTFS.

CONVERT volume /FS:NTFS [/V] [/CvtArea:filename] [/NoSecurity] [/X]

...

Additionally, I am using ImageMagick-7.0.5-Q16. I found a couple of articles indicating the functionality of convert has been replaced by magick in version 7.

I tried a link file with little success and ended up using a batch file (convert.bat).

@jmbeach
Copy link

jmbeach commented Feb 28, 2020

Like gkhays pointed out, there is an exe in System32 which windows will pick up first. To fix this in powershell you can run this: $env:Path = "C:\Users\jared\path-to-convert\;$env:Path"

Now the imagemagick convert exe gets found.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants