Importando o bs4 no Python 3.5

Eu instalei o Python 3.5 e o Beautifulsoup4. Quando tento importar o bs4, recebo o erro abaixo. Existe alguma correção para isso? Ou devo apenas instalar o Python 3.4? Por favor, seja muito explícito - eu sou novo em programação. Muito Obrigado!

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python 3.5\lib\sit-packages\bs4\__init__.py", line 30, in    <module>
   from .builder import builder_registry, ParserRejectionMarkup
  File "C:\Python 3.5\lib\sit-packages\bs4\__init__.py", line 308, in <module>
   from . import _htmlparser
  File "C:\Python 3.5\lib\sit-packages\bs4\_htmlparser.py", line 7, in <module>
   from html.parser import ( 
ImportError: cannot import name 'HTMLParseError'

questionAnswers(3)

yourAnswerToTheQuestion