Skip to content

Commit

Permalink
add requiremnts with running remotely and locally for all systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Yokozuna59 committed May 24, 2022
1 parent 9ef0c8b commit 349dd8e
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,45 @@

> A script installs the right drivers for your browsers, Chrome/Chromium and Firefox, works on Windows, Linux and Mac.
## Linux & Mac & Windows (WSL)
## Requirements

1. [cURL](https://curl.se/docs/install.html) for Windows WSL, Linux and Mac

## Run Remotely

### Linux & Mac & Windows (WSL)

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Yokozuna59/webdriver-installer/master/install.sh)"
```

### Windows (PowerShell)

```PowerShell
$request = Invoke-RestMethod -URI 'https://raw.githubusercontent.com/Yokozuna59/webdriver-installer/master/install.ps1'
Invoke-Expression -Command "$request"
```

## Run Locally

### Linux & Mac

```bash
chmod +x install.sh
./install.sh
```

### Windows (WSL)

```bash
chmod +x install.sh
sed -i 's/\r$//' install.sh
./install.sh
```

### Windows (PowerShell)

```PowerShell
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser
.\install.ps1
```

0 comments on commit 349dd8e

Please sign in to comment.