我想运行一个使用python2.7版本的应用程序,但默认没有安装python2.7。当我尝试使用时:
$ virtualenv -p python2 flaskold
它返回:
RuntimeError: failed to find interpreter for Builtin discover of python_spec='python2'
如何在没有 python 2.7 支持的 Ubuntu 20.04 上创建 python2.7 虚拟环境?
我想运行一个使用python2.7版本的应用程序,但默认没有安装python2.7。当我尝试使用时:
$ virtualenv -p python2 flaskold
它返回:
RuntimeError: failed to find interpreter for Builtin discover of python_spec='python2'
如何在没有 python 2.7 支持的 Ubuntu 20.04 上创建 python2.7 虚拟环境?
安装python2:
Universe 存储库正用于此目的。如果没有添加下一个方法,您可以添加它:
$ sudo add-apt-repository universe
.接下来使用python2.7创建虚拟环境:
$(which python2)
将返回 python2 的路径,这将是正确的参数。python2
可用于在终端中启动解释器,但不能用作--python
指令的参数值