Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在IJulia笔记本中,我尝试添加软件包,但出现错误:
IJulia
NameError: name 'Pkg' is not defined
在 Jupyter 中错误地选择了 Python 而不是 Julia:
以下是 Julia 中发生的情况:
以下是 Python 中发生的情况:
对我来说,我遇到了一个非常相似的错误,如果你是第一次安装它,显然你必须定义 Pkg。只需输入
using Pkg
在您的情况下,问题似乎是您使用的是 python,但这是对另一种情况的修复,在这种情况下您会遇到完全相同的错误。