Frappe docker not working

I had followed the guide using “Setup bench / new site using script”

But are getting error

"
Exception has occurred: ModuleNotFoundError
No module named ‘honcho’
File “/home/frappe/.local/bin/honcho”, line 5, in
from honcho.command import main
ModuleNotFoundError: No module named ‘honcho’
"

while executing

"
honcho start
socketio
watch
schedule
worker_short
worker_long
"

Solved by executing

cd frappe-bench/
source env/bin/activate
pip install honcho

Anyone has shorter way to perform above?