ArgumentError: Plotly not found in path in Julia

ArgumentError: Plotly not found in path in Julia

我已经安装了 plotly usingpipinOS X`:

Monas-MacBook-Pro:~ mona$ pip install plotly
Requirement already satisfied (use --upgrade to upgrade): plotly in ./anaconda/lib/python2.7/site-packages
Requirement already satisfied (use --upgrade to upgrade): pytz in ./anaconda/lib/python2.7/site-packages (from plotly)
Requirement already satisfied (use --upgrade to upgrade): requests in ./anaconda/lib/python2.7/site-packages (from plotly)
Requirement already satisfied (use --upgrade to upgrade): six in ./anaconda/lib/python2.7/site-packages (from plotly)

当我尝试在 julia 中使用它时,出现以下错误:

julia> using Plotly
ERROR: ArgumentError: Plotly not found in path
 in require at /Applications/Julia-0.4.3.app/Contents/Resources/julia/lib/julia/sys.dylib

我该如何解决这个问题?

安装 Plotly,Julia 包:

Pkg.add("Plotly")

选中 here 进行设置。