Files
dotfiles/install/22-poetry.sh
2020-02-26 17:27:44 +00:00

17 lines
327 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" "python"
fi
printf "poetry is installed\n"