一步一步用pip和virtualenv设置python?

时间:2011-02-13 21:11:24

标签: python

是否有关于设置Mac以使用python,pip和virtualenv设置的一步一步的好教程?

2 个答案:

答案 0 :(得分:8)

下载并安装Python 2.7.1 Mac OS X 64-bit/32-bit x86-64/i386 Installer (for Mac OS X 10.6)Python 2.7.1 Mac OS X 32-bit i386/PPC Installer (for Mac OS X 10.3 through 10.6)

在OS X上安装virtualenv和pip的说明

这是我在OS X上安装virtualenvpip的方式:

curl -O http://peak.telecommunity.com/dist/ez_setup.py
sudo python ez_setup.py
sudo easy_install pip
sudo pip install virtualenv

我也想将virtualenvwrappervirtualenv一起使用,所以我使用以下方法安装了它:

sudo pip install virtualenvwrapper

我最初从Jesse Noller的文章"SO YOU WANT TO USE PYTHON ON THE MAC?"

中获取了这些信息

~/.bash_profile设置

这可能有些过分,但下面是我~/.bash_profile的Mac OS X部分。我使用Python.org安装程序安装了多个版本的Python,这就是我通过for循环添加每个版本的Python的原因。

# Mac OS X specific settings
if [ ${os_name} == 'Darwin' ]; then

    # The last Python added to PATH will be the default Python
    PY_VER=( '3.1' '2.6' '2.7')
    PY_VER_ELEMENTS=${#PY_VER[@]}
    DEFAULT_PY=${PY_VER[${PY_VER_ELEMENTS}-1]}
    PY_FW="/Library/Frameworks/Python.framework/Versions"

    for (( i=0;i<$PY_VER_ELEMENTS;i++)); do
        if [ -x ${PY_FW}/${PY_VER[${i}]}/bin/python${PY_VER[${i}]} ]; then
            PATH="${PY_FW}/${PY_VER[${i}]}/bin:${PATH}"
            export PATH
        fi
    done

    # Check for virtualenv in the default Python
    if [ -x ${PY_FW}/${DEFAULT_PY}/bin/virtualenv ]; then
        export VIRTUALENV_USE_DISTRIBUTE=true
        export WORKON_HOME=$HOME/.virtualenvs
    fi

    # Check for pip
    if [ -x ${PY_FW}/${DEFAULT_PY}/bin/pip ]; then
        export PIP_VIRTUALENV_BASE=$WORKON_HOME
        export PIP_REQUIRE_VIRTUALENV=true
        export PIP_DOWNLOAD_CACHE=$HOME/.pip_download_cache
    fi

    # Enable virtualenvwrapper
    if [ -x ${PY_FW}/${DEFAULT_PY}/bin/virtualenvwrapper.sh ]; then
        source ${PY_FW}/${DEFAULT_PY}/bin/virtualenvwrapper.sh
    fi

fi

答案 1 :(得分:2)

有什么问题?

  1. 安装PIP:easy-install pip
  2. 安装virtualenv:pip install virtualenv
  3. 创建virtualenv环境:virtualenv myenv
  4. 输入环境:source myenv/bin/activate或使用myenv/bin/python
  5. ???
  6. PROFIT!