gpt4 book ai didi

.net - 通过添加到 .bash_profile 确保始终运行 dnvm 和 dnu 命令

转载 作者:行者123 更新时间:2023-12-04 18:41:10 27 4
gpt4 key购买 nike

我跟着 Installing ASP.NET 5 and DNX发帖,我被困在这里:

Tip: Add the following to your .bash_profile and restart the Terminal. The first line will ensure that you can always run the dnvm and dnu commands. The second line works around a known bug in Mono where you may see the IOException FileSystemWatcher has reached the maximum number of files to watch when running your application.


source dnvm.sh
export MONO_MANAGED_WATCHER=disabled

我的简单问题是:
  • 如何添加到 .bash_profile ?
  • 最佳答案

    .bash_profile是一个位于 ~/ 的文件.您应该能够使用文本编辑器打开它并添加这些命令。

    或者,您可以在终端中执行此操作。

    echo 'source dnvm.sh' >> ~/.bash_profile
    echo 'export MONO_MANAGED_WATCHER=disabled' >> ~/.bash_profile

    这里发生的是您正在附加一段文本 'source dnvm.sh'到一个特定的文件。
    echo命令打印文本, >>移位运算符将文本附加到文件中,即 .bash_profile位于 ~/ .

    关于.net - 通过添加到 .bash_profile 确保始终运行 dnvm 和 dnu 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35031150/

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