gpt4 book ai didi

python - 无法为 Python 3 安装 Python 虚拟环境

转载 作者:太空宇宙 更新时间:2023-11-03 11:40:28 24 4
gpt4 key购买 nike

我正在关注 these instructions在运行 Mac OSX High Sierra 的 MacBook 上使用 Homebrew 安装 Python 3。

我在这一步遇到了问题:

Once you’ve installed Homebrew, insert the Homebrew directory at the top of your PATH environment variable. You can do this by adding the following line at the bottom of your ~/.profile file

export PATH=/usr/local/bin:/usr/local/sbin:$PATH

更新 ~/.profile 并运行 python --version 后,我仍然看到 Python 2.7.10

这似乎是个问题,因为当我关注 next page使用 pip install --user pipenv 安装虚拟环境,安装完成后我收到以下警告:

The scripts pewtwo, pipenv and pipenv-resolver are installed in '/Users/charliesneath/Library/Python/2.7/bin' which is not on PATH.

我的系统似乎没有正确地优先安装 Homebrew 的 Python 3。

我该如何解决这个问题?

最佳答案

对于 Mac,当您安装 python3 时,它安装在与您引用的示例不同的路径中。要找出 python3 的安装位置,请键入命令行:

which python3

它将返回 /Library/Frameworks/Python.framework/Versions/3.6/bin/python3

将以下行添加到 .bash_profile:

PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH

关于python - 无法为 Python 3 安装 Python 虚拟环境,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50510139/

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