Install a Python package into a different directory using pip?

后端 未结 16 2446
借酒劲吻你
借酒劲吻你 2020-11-22 05:55

I know the obvious answer is to use virtualenv and virtualenvwrapper, but for various reasons I can\'t/don\'t want to do that.

So how do I modify the command

16条回答
  •  醉酒成梦
    2020-11-22 06:10

    Newer versions of pip (8 or later) can directly use the --prefix option:

    pip install --prefix=$PREFIX_PATH package_name
    

    where $PREFIX_PATH is the installation prefix where lib, bin and other top-level folders are placed.

提交回复
热议问题