installing requests module in python 2.7 windows

后端 未结 4 1482
伪装坚强ぢ
伪装坚强ぢ 2020-12-09 03:37

I am facing issues while installing request module (python 2.7) on windows.

Tried the below steps as per documentation:

1

pip

4条回答
  •  死守一世寂寞
    2020-12-09 04:21

    There are four options here:

    1. Get virtualenv set up. Each virtual environment you create will automatically have pip.

    2. Get pip set up globally.

    3. Learn how to install Python packages manually—in most cases it's as simple as download, unzip, python setup.py install, but not always.

    4. Use Christoph Gohlke's binary installers.

提交回复
热议问题