Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm facing a problem with Package Installation, pip. I am using Python 3.6.

When I try to install a package with pip I receive the following message in the cmd.

*C:Python36Scripts>pip intstall --user httpie
Traceback (most recent call last):
  File "c:python36lib
unpy.py", line 193, in _run_module_as_main
    "__main__", mod_spec)
  File "c:python36lib
unpy.py", line 85, in _run_code
    exec(code, run_globals)
  File "C:Python36Scriptspip.exe\__main__.py", line 5, in <module>
ImportError: cannot import name 'main'*

It happened when I upgraded the pip, before it worked. I tried to uninstal the Python and installed this again but it does not work. I cannot find the solution, any ideas?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
534 views
Welcome To Ask or Share your Answers For Others

1 Answer

I fixed it. I deleted the folder with pip as you said. Because I work in Windows 10, I downloaded the get-pip.py from https://pip.pypa.io/en/stable/installing/ and I run it.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...