gpt4 book ai didi

python - Ubuntu 14.04-Python 3.4-pyenv : command Not Found

转载 作者:太空狗 更新时间:2023-10-29 18:18:39 26 4
gpt4 key购买 nike

我正在尝试在全新安装的 Ubuntu Server 14.04 上为 Python 3.4 创建一个虚拟环境。我按照 venv 模块的说明进行操作:

https://docs.python.org/3/library/venv.html#module-venv

我没有太多的 Python 3.4 或 Ubuntu 经验。

当我输入命令时:

pyvenv testDir

我回来了:

pyvenv: command not found

这是什么原因造成的?

最佳答案

Ubuntu 14.04 默认使用 Python 2,开箱即用的 pyenv 命令在 Python 2 中不存在。

然而,您可以使用 virtualenv 来达到同样的目的。您只需要安装它!

你应该:

  • 安装 Python 3 和 virtualenv apt-get install -y python3 python-virtualenv
  • 创建一个 Python 3 虚拟环境:virtualenv -p $(which python3) testDir
  • 使用source testDir/bin/activate激活虚拟环境

关于python - Ubuntu 14.04-Python 3.4-pyenv : command Not Found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29954984/

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