From 075fb570933a42d64ea3aff93e263ee958e5f127 Mon Sep 17 00:00:00 2001 From: callebtc <93376500+callebtc@users.noreply.github.com> Date: Tue, 13 Sep 2022 20:06:33 +0300 Subject: [PATCH] readme --- README.md | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 25e626c..75948f1 100644 --- a/README.md +++ b/README.md @@ -16,22 +16,18 @@ sudo apt install -y build-essential pkg-config libffi-dev libpq-dev zlib1g-dev l # install python using pyenv curl https://pyenv.run | bash - # put this in your ~/.bashrc - export PYENV_ROOT="$HOME/.pyenv" - command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH" - eval "$(pyenv init -)" - eval "$(pyenv virtualenv-init -)" - - +# put this in your ~/.bashrc +echo export PYENV_ROOT=\"$HOME/.pyenv\" >> ~/.bashrc +echo command -v pyenv >/dev/null || export PATH=\"$PYENV_ROOT/bin:$PATH\" >> ~/.bashrc +source ~/.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 | python3 - - - # put this in your ~/.bashrc - export PATH="$HOME/.local/bin:$PATH" - +echo export PATH=\"$HOME/.local/bin:$PATH\" >> ~/.bashrc source ~/.bashrc # install cashu