Доброго времени суток. Скажите пожалуйста, как правильно установить библиотеки aiogram с помощью команды pip. При установке через pip install aiogram выдаётся ошибка:
from aiogram import Bot, Dispatcher, executor, types
ImportError: cannot import name 'executor' from 'aiogram'
Python:
from aiogram import Bot, Dispatcher, executor, types
bot = Bot('7811105444:AAHEGKJZ75pqzDxGenF2jyG3qtdNQ_DiZI0')
dp = Dispatcher(bot)
@dp.message_handler(commands=['start'])
async def start(message: types.Message):
await message.answer('Hello')
executor.start_polling(dp)
ImportError: cannot import name 'executor' from 'aiogram'