2

我已经下载了 Julia-1.1.0(从这里),然后我执行了二进制文件(julia-1.1.0/bin/julia)并在提示中输入

using Pkg

朱莉娅返回:

ERROR: ArgumentError: Package Pkg not found in current path:
- Run `import Pkg; Pkg.add("Pkg")` to install the Pkg package.

如果我输入 Pkg.add("Pkg"),julia 返回

ERROR: UndefVarError: Pkg not defined

我怎样才能让 Pkg 到 wotk?

对不起我的英语不好。

4

1 回答 1

1

在对此问题的评论中提到了 SSL 证书错误。Linux(在我的例子中是 Ubuntu)上的一个解决方案是通过以下方式指定 ssl 证书的位置;


julia> using LibGit2

julia> LibGit2.set_ssl_cert_locations("/etc/ssl/certs/ca-certificates.crt")

于 2019-07-16T08:24:36.240 回答