1 Install chocolatey

powershell

Set-ExecutionPolicy AllSigned

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString(‘https://community.chocolatey.org/install.ps1’))

 

2 Install node npm

choco install nodejs

refreshenv

node -v

npm -v

 

3 Install crawlee

npm install crawlee puppeteer

npx crawlee create crazycrawler

cd crazycrawler && npm start