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

Categories

0 votes
550 views
in Technique[技术] by (71.8m points)

installation - Python troubleshooting: ImportError: cannot import name 'main'

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...