Can someone help me make sure my julia installation is correct? There are a few things that seem sketchy when I try to install and update the DataFrames package and the RDatasets Package
- First, when I issue the command
julia> Pkg.update(DataFrames)
It takes a long time without giving me any notification, only to tell me that DataFrames has already been installed! I figured this might be the case, since I installed the JuliaPro distribution. - Second, when I run
Pkg.update("Rdatasets")
It runs for a long time, before telling me
ERROR: Package Rdatasets is not installed
(Rdatasets, not RDdatasets) - Third, when I try to push ahead and just use the two packages, I get the following:
julia> using RDatasets, Dataframes
WARNING: Method definition vcat(Array{Void, 1}) in module DataFrames at C:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\Users\PeterDeffebach\AppData\Local\JuliaPro\pkgs-0.6.0.1\v0.6\DataFrames\src\abstractdataframe\abstractdataframe.jl:667 overwritten in module DataFrames at C:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\Users\PeterDeffebach\AppData\Local\JuliaPro\pkgs-0.6.0.1\v0.6\DataFrames\src\abstractdataframe\abstractdataframe.jl:667.
WARNING: Method definition dump(IO, DataArrays.AbstractDataArray{T, 1} where T, Int64, Any) in module DataFrames at C:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\Users\PeterDeffebach\AppData\Local\JuliaPro\pkgs-0.6.0.1\v0.6\DataFrames\src\abstractdataframe\abstractdataframe.jl:359 overwritten in module DataFrames at C:\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\Users\PeterDeffebach\AppData\Local\JuliaPro\pkgs-0.6.0.1\v0.6\DataFrames\src\abstractdataframe\abstractdataframe.jl:359.
WARNING: replacing module DataFrames.
WARNING: requiring "Dataframes" in module "Main" did not define a corresponding module.
I think there is something wrong with the way I downloaded it. Can someone please help me out?