Install a module using pip for specific python version

后端 未结 14 908
迷失自我
迷失自我 2020-11-22 17:14

On Ubuntu 10.04 by default Python 2.6 is installed, then I have installed Python 2.7. How can I use pip install to install packages for Python 2.7.

For

14条回答
  •  难免孤独
    2020-11-22 17:41

    You can execute pip module for a specific python version using the corresponding python:

    Python 2.6:

    python2.6 -m pip install beautifulsoup4
    

    Python 2.7

    python2.7 -m pip install beautifulsoup4
    

提交回复
热议问题