I have a fresh official installation of Julia 1.0.1 on OS X. Whenever I run Julia, no default functions are available
julia> Pkg
ERROR: UndefVarError: Pkg not defined
julia> import Pkg
julia> Pkg
Pkg
julia> mean
ERROR: UndefVarError: mean not defined
I used to have previous versions installed, and removed ~/.julia
folder since I suspected it could cause the problem. However, the problem persists. Does anyone know what can be the cause of this problem? Or where can I look for logs to figure out why default functions do not load automatically? Thanks in advance!