zoukankan      html  css  js  c++  java
  • Julia出现错误ERROR: LoadError: syntax: try without catch or finally

    因项目要求进行机器学习数据可视化,要求尝试使用Julia,在此,记录下遇到的坑,仅为记录效果。后续陆续更新。

    问题一:关于LightML库中的坑:ERROR: LoadError: syntax: try without catch or finally

    问题描述: 

    ENV["PYTHON"]=""
    Pkg.add("Conda")
    using Conda
    Conda.add("python==2.7.13")
    Conda.add("matplotlib")
    Conda.add("scikit-learn")
    Pkg.add("PyCall")
    Pkg.build("PyCall")
    Pkg.clone("https://github.com/memoiry/LightML.jl")

    当使用using LightML时出现问题:ERROR: LoadError: syntax: try without catch or finally

    [ Info: Precompiling LightML [21c72615-c80e-5f28-8897-21b7f06a9402]
    ERROR: LoadError: syntax: try without catch or finally
    Stacktrace:
     [1] include at .oot.jl:317 [inlined]
     [2] include_relative(::Module, ::String) at .loading.jl:1038
     [3] include(::Module, ::String) at .sysimg.jl:29
     [4] top-level scope at none:2
     [5] eval at .oot.jl:319 [inlined]
     [6] eval(::Expr) at .client.jl:389
     [7] top-level scope at .
    one:3
    in expression starting at C:Usersadmin.juliapackagesGadflyojGNosrcGadfly.jl:971
    ERROR: LoadError: Failed to precompile Gadfly [c91e804a-d5a3-530f-b6f0-dfbca275c004] to C:Usersadmin.juliacompiledv1.0GadflyDvECm.ji.
    Stacktrace:
     [1] error(::String) at .error.jl:33
     [2] macro expansion at .logging.jl:313 [inlined]
     [3] compilecache(::Base.PkgId, ::String) at .loading.jl:1184
     [4] _require(::Base.PkgId) at .logging.jl:311
     [5] require(::Base.PkgId) at .loading.jl:852
     [6] macro expansion at .logging.jl:311 [inlined]
     [7] require(::Module, ::Symbol) at .loading.jl:834
     [8] include at .oot.jl:317 [inlined]
     [9] include_relative(::Module, ::String) at .loading.jl:1038
     [10] include(::Module, ::String) at .sysimg.jl:29
     [11] top-level scope at none:2
     [12] eval at .oot.jl:319 [inlined]
     [13] eval(::Expr) at .client.jl:389
     [14] top-level scope at .
    one:3
    in expression starting at C:Usersadmin.juliadevLightMLsrcLightML.jl:4
    ERROR: Failed to precompile LightML [21c72615-c80e-5f28-8897-21b7f06a9402] to C:Usersadmin.juliacompiledv1.0LightMLhSDel.ji.
    Stacktrace:
     [1] error(::String) at .error.jl:33
     [2] macro expansion at .logging.jl:313 [inlined]
     [3] compilecache(::Base.PkgId, ::String) at .loading.jl:1184
     [4] _require(::Base.PkgId) at .logging.jl:311
     [5] require(::Base.PkgId) at .loading.jl:852
     [6] macro expansion at .logging.jl:311 [inlined]
     [7] require(::Module, ::Symbol) at .loading.jl:834

    问题分析:

      很明显这是由于try...catch../finally的问题

    问题解决:

      定位到文件Gadfly.jl,在980行处加上catch即可,此类问题都可以这样处理。

  • 相关阅读:
    项目管理系列(其他):国际工程承包项目风险识别与分析
    公司注册之简化版
    公司注册之百度百科
    有效投标不足三家不应是重新招标的必要条件
    CPU频率
    集成电路
    晶体管
    Oracle问题之ORA-01609、ORA-00362
    Oracle问题之ORA-12560TNS:协议适配器错误
    Oracle问题之字符集问题,登陆sqlplus出现问号
  • 原文地址:https://www.cnblogs.com/czx1/p/9505472.html
Copyright © 2011-2022 走看看