Files
dotfiles/install/22-poetry.sh
2020-02-26 15:25:03 +00:00

17 lines
324 B
Bash

#!/usr/bin/env bash
#
# After running this script:
# 1. poetry is installed
#
# 1. poetry is installed
if not_installed "poetry"; then
printf "Installing poetry...\n"
# Install poetry
run https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py python3
fi
printf "poetry is installed\n"