From 1061c6b1e00e8dd36488a48de504130598adf311 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Sun, 11 Sep 2022 17:05:36 +0300 Subject: [PATCH] readme --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1ba50d5..dcb9f48 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,22 @@ ```bash git clone https://github.com/callebtc/cashu.git -sudo apt install -y build-essential pkg-config libffi-dev libpq-dev +sudo apt install -y build-essential pkg-config libffi-dev libpq-dev zlib1g-dev # on mac: brew install postgres -# follow the instructions after installing pyenv +# install python using pyenv curl https://pyenv.run | bash +echo export PYENV_ROOT="$HOME/.pyenv" >> .bashrc +echo command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" >> .bashrc +echo eval "$(pyenv init -)" >> .bashrc +echo eval "$(pyenv virtualenv-init -)" >> .bashrc +source .bashrc pyenv install 3.9.13 +# install poetry +curl -sSL https://install.python-poetry.org | python - + +# install cashu cd cashu poetry install ```