-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
executable file
·27 lines (21 loc) · 939 Bytes
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
# Install Python dependencies
pip install -r requirements.txt
# Install additional system-level dependencies/packages
sudo apt-get update # requ' to run the below
sudo apt-get install graphviz libgraphviz-dev pkg-config # creating ERD/graphviz diagrams/images
pip install pygraphviz # creating ERD/graphviz diagrams/images
pip install graphviz
pip install openpyxl # create repo tree reference file in xls
pip install tabulate # create change log table formatting
pip install reportlab
pip install markdown
pip install sqlparse
# Install or update Poetry
if ! command -v poetry &>/dev/null; then
pip install poetry
else
pip install --upgrade poetry
fi
# Install the Python extension for Visual Studio Code
code --install-extension ms-python.python --force