From 90d3adcd09e27a8975ce5e8ee370b095313c113f Mon Sep 17 00:00:00 2001 From: nikurasu Date: Wed, 24 Jan 2024 22:39:47 +0100 Subject: [PATCH] feat(BASH): Golang and python Golang local install and list needed libs by pyenv in README.md --- README.md | 8 ++++++++ bash/tamakirc | 1 + 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index 84d7eb9..93b4a17 100755 --- a/README.md +++ b/README.md @@ -9,3 +9,11 @@ Copy it and rename it to .env.sh. Don't commit one with your environment variabl ## docker-compose-v1 compatibility At some times some projects require the old docker-compose-v1 to be installed. I wrote the `docker-compose` file here to simply yeet all of that commands into the new `docker compose` command. Copy it somewhere into your path (maybe `/usr/local/bin`) to get it working. + +## Python + +### Install required libraries + +#### Debian + +`apt install libbz2-dev libncurses-dev libffi-dev libreadline-dev libsqlite3-dev tk-dev liblzma-dev` diff --git a/bash/tamakirc b/bash/tamakirc index 424ef03..29d4a1b 100644 --- a/bash/tamakirc +++ b/bash/tamakirc @@ -13,6 +13,7 @@ export PATH=$BUN_INSTALL/bin:$PATH ZVM_INSTALL="$HOME/.zvm/self" PATH="$PATH:$HOME/.zvm/bin" PATH="$PATH:$ZVM_INSTALL/" +PATH="$PATH:$HOME/.local/go/bin" eval "$(pyenv init -)" eval "$(starship init bash)"