Scheduled maintenance on Saturday, 27 September 2025, from 07:00 AM to 4:00 PM GMT (09:00 AM to 6:00 PM CEST) - some services may be unavailable -

Skip to content
basicRobotInstall.sh 435 B
Newer Older
Jorge Moratinos's avatar
Jorge Moratinos committed
#!/bin/bash
echo "Installing basic software related with robotFramework"
source /opt/venv/bin/activate; 
pip install --upgrade pip
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
source /root/.bashrc
nvm install node
yes|npx playwright install-deps
pip install -r $1
rfbrowser clean-node
rfbrowser init --skip-browsers
npx playwright install
npx playwright install-deps
Jorge Moratinos's avatar
Jorge Moratinos committed
echo "Robot framework installed"