Clean scripts, remove sudo requirement

Add python dependencies

Correctly symlink and add poetry

Update make clean

Add python2 to dependencies

Fix pyenv install

Use pyenv to install python

Update .gitignore

Install git and keybase
This commit is contained in:
Andrejus
2020-02-26 14:46:23 +00:00
parent 5c0637db75
commit 549d6ce88d
20 changed files with 311 additions and 85 deletions

16
install/22-poetry.sh Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
#
# After running this script:
# 1. poetry is installed
#
# 1. poetry is installed
if ! hash poetry 2>/dev/null; then
printf "Installing poetry...\n"
# Install poetry
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3
fi
printf "poetry is installed\n"