Installing Cypress

Mon, 24 Jun 2019

I am installing Cypress on Ubuntu 12.

Install node from the nodejs website https://nodejs.org/

Open a terminal window Create a new directory. This is where I will put my first project

mkdir cypress1
cd cypress1

Check that node installed correctly

node -v
npm -v
npm init

Install cypress

npm install cypress --save-dev
Loading...