How to solve “Unresolved import: HTML” in Python Development?

后端 未结 2 1549
粉色の甜心
粉色の甜心 2021-01-29 02:27

I\'m starting to learn about python development in a new project. I got setup almost everything right, but only this import HTML that keeps given me some error that

2条回答
  •  [愿得一人]
    2021-01-29 02:57

    It looks like you are using anaconda, have you tried installing it the anaconda way?

    conda install HTML
    

    Also do you by any chance have 2 version of Python on your system?

    If the package is unavailable you'll have to user pip. If you don't have pip, from your command line write:

    python get-pip.py
    pip install HTML
    

提交回复
热议问题