Skip to main content

๐Ÿ› ๏ธ Tools

Full Components Installationโ€‹

To install a complete set of Ubuntu components required to work with various nodes, you can use the following script:

wget -q -O - https://raw.githubusercontent.com/owlstake/cosmos-script-template/main/components/install.sh | bash

This installation script includes the following components:

  • Docker
  • Docker-compose
  • build-essential
  • ocaml ocamlbuild
  • automake autoconf
  • libtool
  • wget
  • python
  • libssl-dev
  • git
  • cmake make
  • perl
  • tmux
  • ufw
  • gcc
  • unzip zip
  • jq
  • golang-statik

Docker + Docker-compose Installationโ€‹

To install Docker and Docker-compose with a custom version, you can use the following script:

wget -q -O - https://raw.githubusercontent.com/owlstake/cosmos-script-template/main/components/docker/install.sh | bash -s -- 2.17.2

This installation script includes:

  • Docker
  • Docker-Compose

Golang Installationโ€‹

To install Golang with a default version of 1.22.3 or a specific version, you can use the following script:

Default version (1.22.3):

wget -q -O - https://raw.githubusercontent.com/owlstake/cosmos-script-template/main/components/golang/install.sh | bash

Specify a version:

wget -q -O - https://raw.githubusercontent.com/owlstake/cosmos-script-template/main/components/golang/install.sh | bash -s -- 1.22.3

Python Installationโ€‹

To install a custom version of Python, you can use the following script:

Specify a version:

wget -q -O - https://raw.githubusercontent.com/owlstake/cosmos-script-template/main/components/python/install.sh | bash -s -- 3.8.5

After running the installation scripts, it is recommended to restart your terminal to apply the changes.