gpt4 book ai didi

julia - 如何向我的 Julia 包添加依赖项?

转载 作者:行者123 更新时间:2023-12-04 13:12:02 26 4
gpt4 key购买 nike

我在 Julia 中创建了一个包(我们称之为 package_name);文件结构已经与 Project.toml 和 Manifest.toml 文件一起生成,我在创建包时已经添加了一些依赖项。
我忘了添加依赖项,我想让 REPL 显示:

(package_name) pkg > 
这样我就可以打字
add dependency_name
我如何让 REPL 显示这一点?我想我需要转到包文件夹并(重新)激活包,但我无法使用 cd 导航到它。
显示我应该在 REPL 中输入的确切命令会很有帮助。

最佳答案

为了得到package REPL mode , 当您的光标位于行首时,您应该键入一个右括号 ]。同样,在包 REPL 模式下,您需要在提示后立即键入 BackSpc 以返回标准 REPL 模式:

julia> # type ] here to enter the Pkg REPL

# We're now in the Pkg REPL, but the default environment is active
# Let's activate the environment we want
# (replace the path below with "." to activate the environment defined in the current working directory)
(@v1.5) pkg> activate /path/to/package

# Now we see that the correct environment is active
# This is where new dependencies will be added
(package_name) pkg> add DepName

(package_name) pkg> # type BackSpace here to get back to the standard REPL

julia>
此外,您可以使用 pkg"..." 在不进入 Pkg REPL 模式的情况下实现相同的功能。 Pkg 中定义的字符串宏图书馆:
julia> using Pkg

julia> pkg"activate /path/to/package"

julia> pkg"add DepName"

关于julia - 如何向我的 Julia 包添加依赖项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64078701/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com