mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 04:45:07 +00:00
2.2 KiB
2.2 KiB
title, description, tags, keywords
| title | description | tags | keywords | ||||
|---|---|---|---|---|---|---|---|
| Executables | Executable installation |
|
|
Installing NocoDB using Executables
NocoDB provides pre-built executables for various platforms, allowing you to run NocoDB without any additional dependencies.
Downloading and Running NocoDB
Choose the appropriate command based on your operating system and architecture:
curl http://get.nocodb.com/macos-x64 -o nocodb -L \
&& chmod +x nocodb \
&& ./nocodb
curl http://get.nocodb.com/macos-arm64 -o nocodb -L \
&& chmod +x nocodb \
&& ./nocodb
curl http://get.nocodb.com/linux-x64 -o nocodb -L \
&& chmod +x nocodb \
&& ./nocodb
iwr http://get.nocodb.com/win-arm64.exe -OutFile "Noco-win-arm64.exe"
.\Noco-win-arm64.exe
Accessing NocoDB
Once you run the executable, you can access NocoDB in your browser by visiting http://localhost:8080.
Important Notes
- The executables are self-contained and don't require any additional installation steps.
- By default, NocoDB will use SQLite as the database, storing data in the same directory as the executable.
- To use a different database or configure other options, you can set environment variables before running the executable.
Troubleshooting
- If you see a security warning on macOS, you may need to allow the executable in System Preferences > Security & Privacy.
- On Windows, if SmartScreen prevents the execution, you can choose "More info" and then "Run anyway".
- Make sure port 8080 is not in use by another application.