为什么在Julia编程中使用inno-setup安装图像库总是遇到失败问题?

2026-04-10 16:393阅读0评论SEO资讯
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计638个文字,预计阅读时间需要3分钟。

为什么在Julia编程中使用inno-setup安装图像库总是遇到失败问题?

我在Windows 7系统下开始使用Julia 0.3.10语言,尝试安装并运行Images包,但无法安装。输入命令`Pkg.add(Images)`后,输出看似无误,但接下来的行显示Inno Setup检测到版本问题,但我不确定具体原因。

我在 Windows 7下开始使用Julia 0.3.10.语言安装并运行,但我无法安装Images包.当我输入:

Pkg.add("Images")

我得到的输出看起来不错,但接下来的行.看起来Inno Setup已经检测到版本问题,但我不确定哪个版本存在问题.
我已经尝试删除所有“julia”并重新下载,但无济于事.另外,我在网上搜索了这个错误消息的各种部分,也是stackoverflow;似乎没什么关系.

在Pkg.add(“图像”)之后,几十个看似正常的线条,然后:

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

这是我看到麻烦的第一个迹象:

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 ]================================ 另一个讨厌窗户的原因.当然在Ubuntu上添加这个软件包没有问题,所以我切换到我的Windows安装,并且看起来和你有同样的问题.事实证明错误信息非常神秘,但这就是我解决问题的方法.首先我做了:

Pkg.update()

然后我完全退出了julia,然后我去了:www.imagemagick.org/script/binary-releases.php#windows并下载了ImageMagick-6.9.1-9-Q16-x64-dll.exe
确保在通过下载程序选项时选中标记为“为C和C安装开发标题和库”的框.

我允许安装程序安装到其默认目录,然后重新打开julia并使用以下命令:

Pkg.build("Images")

它成功地做了,然后我能够使用正常命令的图像包:

为什么在Julia编程中使用inno-setup安装图像库总是遇到失败问题?

using Images

本文共计638个文字,预计阅读时间需要3分钟。

为什么在Julia编程中使用inno-setup安装图像库总是遇到失败问题?

我在Windows 7系统下开始使用Julia 0.3.10语言,尝试安装并运行Images包,但无法安装。输入命令`Pkg.add(Images)`后,输出看似无误,但接下来的行显示Inno Setup检测到版本问题,但我不确定具体原因。

我在 Windows 7下开始使用Julia 0.3.10.语言安装并运行,但我无法安装Images包.当我输入:

Pkg.add("Images")

我得到的输出看起来不错,但接下来的行.看起来Inno Setup已经检测到版本问题,但我不确定哪个版本存在问题.
我已经尝试删除所有“julia”并重新下载,但无济于事.另外,我在网上搜索了这个错误消息的各种部分,也是stackoverflow;似乎没什么关系.

在Pkg.add(“图像”)之后,几十个看似正常的线条,然后:

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

这是我看到麻烦的第一个迹象:

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 ]================================ 另一个讨厌窗户的原因.当然在Ubuntu上添加这个软件包没有问题,所以我切换到我的Windows安装,并且看起来和你有同样的问题.事实证明错误信息非常神秘,但这就是我解决问题的方法.首先我做了:

Pkg.update()

然后我完全退出了julia,然后我去了:www.imagemagick.org/script/binary-releases.php#windows并下载了ImageMagick-6.9.1-9-Q16-x64-dll.exe
确保在通过下载程序选项时选中标记为“为C和C安装开发标题和库”的框.

我允许安装程序安装到其默认目录,然后重新打开julia并使用以下命令:

Pkg.build("Images")

它成功地做了,然后我能够使用正常命令的图像包:

为什么在Julia编程中使用inno-setup安装图像库总是遇到失败问题?

using Images