Julia 找不到Gadfly包?

Julia 找不到Gadfly包?,julia,gadfly,Julia,Gadfly,在Windows10机器上使用Julia 0.5.0和Emacs 25.1,我试图使用Gadfly包。不幸的是,出现以下输出: C:\Users\CaitlinG>julia -e "using Gadfly" ERROR: ArgumentError: Module Gadfly not found in current path. Run `Pkg.add("Gadfly")` to install the Gadfly package. in require(::Symbol) a

在Windows10机器上使用Julia 0.5.0和Emacs 25.1,我试图使用Gadfly包。不幸的是,出现以下输出:

C:\Users\CaitlinG>julia -e "using Gadfly"
ERROR: ArgumentError: Module Gadfly not found in current path.
Run `Pkg.add("Gadfly")` to install the Gadfly package.
 in require(::Symbol) at .\loading.jl:365
 in eval(::Module, ::Any) at .\boot.jl:234
 in process_options(::Base.JLOptions) at .\client.jl:239
 in _start() at .\client.jl:318

C:\Users\CaitlinG>julia -e "Pkg.add(\"Gadfly\")"
INFO: Nothing to be done
INFO: METADATA is out-of-date — you may not have the latest version of Gadfly
INFO: Use `Pkg.update()` to get the latest versions of your packages

C:\Users\CaitlinG>julia -e "Pkg.update()"
INFO: Updating METADATA...
INFO: Updating cache of DataFrames...
INFO: Updating cache of DataFrames...
INFO: Computing changes...
INFO: No packages to install, update or remove
有人知道为什么会这样吗


谢谢。

Gadfly现在是显示在您的REQUIRE文件(c:\Users\CaitlinG\.julia\v0.5\REQUIRE)中,还是作为文件夹显示在该目录中?您可能需要在Pkg.update()之后再打包一次Pkg.add(“Gadfly”)。使用
任何包都可以吗?比如说,
使用数据帧
?嗨。不,我无法加载任何带有“using packageName”语法的包。