-
Notifications
You must be signed in to change notification settings - Fork 26
Description
_
_ _ ()_ | A fresh approach to technical computing
() | () () | Documentation: http://docs.julialang.org
_ _ | | __ _ | Type "help()" to list help topics
| | | | | | |/ ` | |
| | || | | | (| | | Version 0.3.0-prerelease+3687 (2014-06-16 00:19 UTC)
/ |_'|||__'| | Commit 9381e34 (2 days old master)
|__/ | x86_64-w64-mingw32
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Computing changes...
INFO: No packages to install, update or remove
julia> using DataFrames
julia> using MachineLearning
ERROR: MachineLearning not found
in require at loading.jl:47
julia> Pkg.aMachineLearning
add available
julia> Pkg.add("MachineLearning")
ERROR: unknown package MachineLearning
in wait at task.jl:51
julia> Pkg.add(MachineLearning)
ERROR: MachineLearning not defined
julia> Pkg.build("MachineLearning")
julia> using MachineLearning
ERROR: MachineLearning not found
in require at loading.jl:47
julia>
Paul