Importerror: Cannot Import Name 'main' When Trying To Download Any Python Library
I've been able to normally download python libraries for a while but this happened and I've gone through every solution but I think this is specific to my situation I was trying to
Solution 1:
bs4
is for python3 and BeautifulSoup
is for python2. You are trying to install the wrong package. Do
pip install bs4
Solution 2:
With pip upgrade, it worked for me 1. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py 2. python get-pip.py
Post a Comment for "Importerror: Cannot Import Name 'main' When Trying To Download Any Python Library"