Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
Updated the installation
Browse files Browse the repository at this point in the history
  • Loading branch information
irfanpena committed Aug 16, 2024
1 parent 1b2d440 commit 467f23a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 23 deletions.
23 changes: 12 additions & 11 deletions docs/installation/linux.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ npm i -g cortexso
You can also install Cortex using the Cortex Installer available on [GitHub Releases](https://github.com/janhq/cortex/releases).
:::

## Uninstall Cortex
```sh
# Uninstall cortex
sudo apt remove cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
:::info
Delete the Cortex data folder located in your home folder.
:::

## Build from Source

1. Clone the Cortex repository [here](https://github.com/janhq/cortex/tree/dev).
Expand Down Expand Up @@ -59,17 +71,6 @@ npm link
# Get the help information
cortex -h
```
## Uninstall Cortex
```sh
# Uninstall cortex
sudo apt remove cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
:::info
Delete the Cortex data folder located in your home folder.
:::

## Prerequisites
### Dependencies
Expand Down
23 changes: 12 additions & 11 deletions docs/installation/mac.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ npm i -g cortexso
:::info
You can also install Cortex using the Cortex Installer available on [GitHub Releases](https://github.com/janhq/cortex/releases).
:::

## Uninstall Cortex
```sh
# Uninstall using Brew
brew uninstall cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
:::info
Delete the Cortex data folder located in your home folder.
:::
## Build from Source

1. Clone the Cortex repository [here](https://github.com/janhq/cortex/tree/dev).
Expand Down Expand Up @@ -51,17 +63,6 @@ npm link
# Get the help information
cortex -h
```
## Uninstall Cortex
```sh
# Uninstall using Brew
brew uninstall cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
:::info
Delete the Cortex data folder located in your home folder.
:::

## Prerequisites

Expand Down
17 changes: 16 additions & 1 deletion docs/installation/windows.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,18 @@ For Windows, Cortex can be installed in two ways:
### Install Cortex
Before installation, make sure that you have met the required [dependencies](#windows) and [hardware](#hardware) to run Cortex.
```sh
# Install using NPM
# Install using winget
winget install cortexso

# Install using NPM (Not Recommended)
npm i -g cortexso
```

### Uninstall Cortex
```sh
# Uninstall using winget
winget uninstall cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
Expand All @@ -44,6 +50,12 @@ Before installation, make sure that you have met the required [dependencies](#wi
# Install using Brew
brew install cortexso

# Install Cortex
sudo apt install openmpi-bin libopenmpi-dev
sudo add-apt-repository ppa:homebrew-computer/main
sudo apt update
sudo apt install cortexso

# Install using NPM (Not Recommended)
npm i -g cortexso

Expand All @@ -55,6 +67,9 @@ npm i -g cortexso
# Uninstall using Brew
brew uninstall cortexso

# Uninstall cortex
sudo apt remove cortexso

# Uninstall using NPM
npm uninstall -g cortexso
```
Expand Down

0 comments on commit 467f23a

Please sign in to comment.