ImportError: No module named pip

前端 未结 19 805
时光取名叫无心
时光取名叫无心 2020-12-04 06:56

OS: Mac OS X 10.7.5 Python Ver: 2.7.5

I have installed setuptools 1.0 with ez_setup.py from https://pypi.python.org/pypi/setuptools Then I download pip.1.4.1 pkg fr

19条回答
  •  生来不讨喜
    2020-12-04 07:44

    my py version is 3.7.3, and this cmd worked

    python3.7 -m pip install requests

    requests library - for retrieving data from web APIs.

    This runs the pip module and asks it to find the requests library on PyPI.org (the Python Package Index) and install it in your local system so that it becomes available for you to import

提交回复
热议问题