mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
3 months ago
|
---
|
||
|
title: 'Homebrew'
|
||
|
description: 'Install NocoDB using Homebrew'
|
||
|
tags: ['Open Source']
|
||
|
keywords : ['NocoDB installation', 'NocoDB homebrew installation', 'NocoDB prerequisites']
|
||
|
---
|
||
|
|
||
|
# Installing NocoDB with Homebrew
|
||
|
|
||
|
Homebrew provides a simple way to install NocoDB on macOS and Linux systems. Follow these steps to install NocoDB using Homebrew.
|
||
|
|
||
|
## Prerequisites
|
||
|
- [Homebrew](https://brew.sh/)
|
||
|
|
||
|
## Installation Steps
|
||
|
|
||
|
1. Add the NocoDB tap to Homebrew:
|
||
|
|
||
|
```bash
|
||
|
brew tap nocodb/nocodb
|
||
|
```
|
||
|
|
||
|
2. Install NocoDB:
|
||
|
|
||
|
```bash
|
||
|
brew install nocodb
|
||
|
```
|
||
|
|
||
|
3. Start NocoDB:
|
||
|
|
||
|
```bash
|
||
|
nocodb
|
||
|
```
|
||
|
|
||
|
4. Access NocoDB in your browser by visiting `http://localhost:8080`.
|
||
|
|
||
|
## Updating NocoDB
|
||
|
|
||
|
To update NocoDB to the latest version, use the following command:
|
||
|
|
||
|
```bash
|
||
|
brew upgrade nocodb
|
||
|
```
|
||
|
|
||
|
## Troubleshooting
|
||
|
|
||
|
- If you encounter permission issues, make sure you have the necessary rights to install packages with Homebrew.
|
||
|
|
||
|
- If NocoDB doesn't start, check if the default port (8080) is already in use. You can specify a different port using environment variables.
|