0

我如何ACtive python在虚拟环境中安装。

我在这篇帖子中遇到了这个问题答案 https://stackoverflow.com/a/7458717/1958218

现在,通过在 centos 本身上使用活动 python 解决了这个问题。但是对于 django ,我正在使用virtualenv并且在那里遇到同样的问题。但问题是我那里没有活动的python。

我尝试激活虚拟环境,然后使用此命令 /opt/ActivePython-2.6/bin/pypm install mysql-python但同样的错误

我想使用类似的东西

/virtualenv/bin/ActivePython-2.6/bin/pypm install mysql-python
4

1 回答 1

0

你可以告诉 virtualenv 你的 python 解释器在哪里

Usage: virtualenv [OPTIONS] DEST_DIR

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -v, --verbose         Increase verbosity
  -q, --quiet           Decrease verbosity
  -p PYTHON_EXE, --python=PYTHON_EXE
                        The Python interpreter to use, e.g.,
                        --python=python2.5 will use the python2.5 interpreter
                        to create the new environment.  The default is the
                        interpreter that virtualenv was installed with
于 2013-07-03T01:48:07.733 回答