2

我已经安装了plotly usingpip inOS 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

我怎样才能解决这个问题?

4

1 回答 1

5

安装 Plotly,Julia 包:

Pkg.add("Plotly")

检查此处进行设置。

于 2016-02-04T09:14:57.610 回答