Installation
Follow these steps to get Oblivion up and running on your system.
Requirements
- Go 1.20+ installed on your system
- Git
- Unix-like shell (Linux/macOS recommended)
1. Clone the Repository
git clone https://github.com/czz78/oblivion.git
cd oblivion
2. Build the Binary
go build -o oblivion main.go
3. Run Oblivion
./oblivion
This will launch the interactive REPL where you can start loading modules and issuing commands.
Tip:
You can add the binary to your system PATH for global use:
sudo mv oblivion /usr/local/bin/
Update
To update Oblivion to the latest version:
cd oblivion
git pull
go build -o oblivion main.go
Troubleshooting
- Build errors? Ensure your Go version is 1.20 or higher:
go version
- Missing packages? Run
go mod tidy
inside the repo directory