nickjackolson
nickjackolson

Reputation: 83

How to load the Sound module?

Please would you know how to sucessfully load the sound module with Julia ? At the prompt I type the following and I immediately obtain the following error :

julia> require("Sound")
ERROR: Sound not found
 in require at loading.jl:39

I am using linux Mint.

Upvotes: 0

Views: 144

Answers (1)

IainDunning
IainDunning

Reputation: 11654

First, which version of Julia are you using? Use the versioninfo() command at the REPL.

Second, have you installed the Sound.jl package using Pkg.add("Sound")?

Finally, to use the sound package, use using Sound, or import Sound - see manual for the difference.

Upvotes: 3

Related Questions