Why adding an image library fails in Julia?

I start working with Julia 0.3.10 under Windows 7. The language installs and starts, but I can’t install the Images package. When I type:

Pkg.add("Images")

I get output that looks fine, but then the lines below. It seems that Inno Setup has detected a version issue, but I'm not sure whose version is problematic. I tried deleting all the "julia" and reloading, but to no avail. In addition, I searched the Internet for various snippets of this error message, also stackoverflow; nothing seems relevant.

After Pkg.add("Images"), a few dozen normal lines, then:

INFO: Building Images
INFO: Installing ImageMagick library
INFO: Attempting to Create directory C:\Users\Jim\.julia\v0.3\Images\deps\downloads
INFO: Attempting to Create directory C:\Users\Jim\.julia\v0.3\Images\deps\usr\lib\x64
INFO: Attempting to Create directory C:\Users\Jim\.julia\v0.3\Images\deps\downloads
INFO: Directory C:\Users\Jim\.julia\v0.3\Images\deps\downloads already created
INFO: Downloading file [link at imagemagick] download/binaries/ImageMagick-6.9.1-9-Q16-x64-dll.exe
INFO: Done downloading file [...]ImageMagick-6.9.1-9-Q16-x64-dll.exe
INFO: Attempting to Create directory C:\Users\Jim\.julia\v0.3\Images\deps\downloads
INFO: Directory C:\Users\Jim\.julia\v0.3\Images\deps\downloads already created
INFO: Downloading file [link at julialang.s3.amazonaws.com]/bin/winnt/extras/innounp.exe
INFO: Done downloading file [link at julialang.s3.amazonaws.com]/bin/winnt/extras/innounp.exe
INFO: Changing Directory to C:\Users\Jim\.julia\v0.3\Images\deps\downloads

Here, where I see the first sign of a problem:

Signature detected: Inno Setup Setup Data (5.5.6) (u)
This is not directly supported, but i'll try to unpack it as version 5500; Version detected: 5506 (Unicode)
Critical error: The setup files are corrupted. Please obtain a new copy of the program.

Unpacking failed. This version is not supported.

===============================[ ERROR: Images ]================================
+4
source share
1

. , Ubuntu , Windows, , . , , , . :

    Pkg.update()

julia, : http://www.imagemagick.org/script/binary-releases.php#windows ImageMagick-6.9.1-9-Q16- 64-dll.exe , , : " C ++".

, julia :

    Pkg.build("Images")

, :

   using Images
+3

Source: https://habr.com/ru/post/1599402/


All Articles