简体   繁体   中英

while installing i'm getting "importError: cannot import name 'main'" error

while installing packages

$pip3 install flask-bcrypt

it shows from pip import main ImportError: cannot import name 'main'

Try to replace your code with this sample :

from pip import __main__

Then you should be able to access the main by :

sys.exit(__main__)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM