gpt4 book ai didi

python - 使用 Bash 修复 Python 库的 PATH

转载 作者:行者123 更新时间:2023-12-04 11:04:48 25 4
gpt4 key购买 nike

我试图通过在 Bash 中执行以下命令的变体来安装一些 Python 库:

pip install --user -U numpy
我使用 Homebrew 安装了 Python3。
然后我每次都会收到以下消息的变体:

WARNING: The scripts f2py, f2py3 and f2py3.7 are installed in '/Users/x/Library/Python/3.7/bin' which is not on PATH.Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.


如何解决此问题以避免将来出现问题?

最佳答案

错误消息告诉您将 Python 3 添加到您的路径中。
为此,请使用文本编辑器打开 /Users/<you>/.bashrc ,并在最后一行添加:

export PATH=/Users/<you>/Library/Python/3.8/bin:$PATH
然后您需要启动一个新的终端窗口以使这些设置生效。 (您可以通过直接在您的 shell 中输入该行来使其在您当前的 shell 中生效)

关于python - 使用 Bash 修复 Python 库的 PATH,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58051467/

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