作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Julia 中创建了一个包(我们称之为 package_name);文件结构已经与 Project.toml 和 Manifest.toml 文件一起生成,我在创建包时已经添加了一些依赖项。
我忘了添加依赖项,我想让 REPL 显示:
(package_name) pkg >
这样我就可以打字
add dependency_name
我如何让 REPL 显示这一点?我想我需要转到包文件夹并(重新)激活包,但我无法使用 cd 导航到它。
最佳答案
为了得到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/
我是一名优秀的程序员,十分优秀!