zu laden Ich möchte die Funktion verwenden bitrand()
, die in der compat.jl
-Paket ist. Hier ist, was ich getan habe:Versucht, ein Paket in Julia
julia> Pkg.add("compat")
INFO: Nothing to be done
julia> using Compat
julia> bitrand()
ERROR: bitrand not defined
julia> Pkg.update()
INFO: Updating METADATA...
INFO: Computing changes...
INFO: No packages to install, update or remove
julia> using Compat
julia> bitrand()
ERROR: bitrand not defined
julia> Compat.bitrand()
ERROR: bitrand not defined
Für Informationen, ich bin mit Julia-0.3.2
. Vielen Dank!
EDIT
julia> Pkg.status()
3 required packages:
- Compat 0.2.10
- Distributions 0.6.3
- StatsBase 0.6.10
3 additional packages:
- ArrayViews 0.4.8
- JSON 0.4.0
- PDMats 0.3.1
julia> Pkg.add("Compat")
INFO: Nothing to be done
julia> using Compat
julia> bitrand()
ERROR: bitrand not defined
Ist Kapitalisierung Angelegenheit zu sein? Ich denke es, d. H. Versuche 'Pkg.add (" Compat ")' nicht 'Pkg.add (" compat ")' –
Was zeigt 'Pkg.status()'? –
Siehe Bearbeitungen in Reaktion auf die beiden Kommentare. –