Skip to content

Commit

Permalink
Merge pull request #196 from MOV-AI/dev
Browse files Browse the repository at this point in the history
Update README: Installation instructions
  • Loading branch information
MithunKinarullathil authored Oct 28, 2022
2 parents 0b8f34c + cfdee0b commit 57ffb78
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,25 +95,26 @@ sudo systemctl restart docker

## Installation
#### Option A
- Download the debian file from the **Assets** section of the [latest releases page](https://github.com/MOV-AI/movai-flow/releases/latest)
- Click on the downloaded file in your browser or double click on the `movai-flow*.deb` file in your Downloads directory using a file explorer
- Enter your user password if there is a promt.
- Click the Install option. The Ubuntu Software Package Manager starts installing the downloaded app.

#### Option B
- Open a terminal
- Download the latest debian file
- Install it. Enter your user password if there is a promt.

```shell
# Install curl
sudo apt install curl
# Download and install the latest released debian pacakge
curl -s https://api.github.com/repos/MOV-AI/movai-flow/releases/latest | grep "browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | xargs curl -LJO
# Install, please make sure you have the correct file
sudo apt install ./movai-flow-1.2.0*.deb
sudo apt install curl gpg
# Add gpg key
curl -fsSL https://artifacts.aws.cloud.mov.ai/repository/movai-applications/gpg | sudo gpg --dearmor -o /usr/share/keyrings/movai-archive-keyring.gpg
# Add source
echo "deb [arch=all signed-by=/usr/share/keyrings/movai-archive-keyring.gpg] https://artifacts.aws.cloud.mov.ai/repository/ppa-public main main" | sudo tee /etc/apt/sources.list.d/movai.list > /dev/null
# Update
sudo apt update
# Install
sudo apt install movai-flow
```

#### Option B
- Download the debian file from the **Assets** section of the [latest releases page](https://github.com/MOV-AI/movai-flow/releases/latest)
- Click on the downloaded file in your browser or double click on the `movai-flow*.deb` file in your Downloads directory using a file explorer.
- Enter your user password if there is a prompt.
- Click the Install option. The Ubuntu Software Package Manager starts installing the downloaded app.

## Update
Follow our [documentation](https://flow.mov.ai/docs/updating-movai-flow) page for steps and details on how to update MOV.AI Flow.

Expand Down

0 comments on commit 57ffb78

Please sign in to comment.