OctaneScript is a scripting language built using Python.
Feel free to open an issue if you find any bugs or if you have any feature suggestions.
This package can be installed on any 64 bit Debian based Linux distriubtion including but not limited to Ubuntu and Kali Linux.
- Download Debian package from the OctaneScript GitHub Release page.
$ curl -O <OctaneScript Debian download URL>
- Install package.
$ sudo dpkg -i octanescript-<version>-linux-amd64.deb
- Smoke test.
$ os --version
These binaries should work for most 64 bit Linux distributions.
- Download Tar file from the OctaneScript GitHub Release page.
$ curl -O <OctaneScript Tar download URL>
- Create a dedicated folder for the binaries to live.
$ sudo mkdir /opt/octanescript
- Extract the contents ot the tar file to the folder where you want the binaries to live.
$ sudo tar -xzvf octanescript-<version>-linux-amd64.tgz --directory /opt/octanescript/
- Append the following line to
.bashrc
to add/opt/octanescript
to thePATH
environment variable.
PATH=/opt/octanescript:$PATH
- Smoke test.
$ os --version
Before Installing Octane on Windows, ensure that you have Python installed and Pip package manager installed before you begin. Also ensure that you are running cmd or Powershell as Administrator.
Note that currently, Octane has to be built on Windows from source.
The binaries in this Windows Installer should work on any 64 bit Windows machine.
- Download Windows Installer from the OctaneScript GitHub Release page and Run it.
- Smoke test.
> os --version
These binaries should work on any 64 bit Windows machine.
⚠️ Ensure that you run Windows PowerShell as Administrator.
- Download Zip file from the OctaneScript GitHub Release page.
> curl -O <OctaneScript Zip download URL>
- Create a dedicated folder for the binaries to live.
> mkdir "C:\Program Files\OctaneScript"
- Extract the contents ot the zip file to the folder where you want the binaries to live.
> Expand-Archive -Path octanescript-<version>-windows-amd64.zip -DestinationPath "C:\Program Files\OctaneScript"
- Add
C:\Program Files\OctaneScript\
to thePATH
environment variable. - Smoke test.
> os --version