Skip to content

Commit

Permalink
Merge pull request #166 from Sklup55/patch-1
Browse files Browse the repository at this point in the history
setup.sh having commands for setting up Python 3.9 env - new  addition
  • Loading branch information
lavskillup committed Dec 21, 2023
2 parents 7673487 + 89de9d7 commit 149265a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions functions/setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

# Install Python 3.9
sudo apt-get update
sudo apt-get install -y python3.9 python3.9-distutils

# Upgrade pip
/usr/bin/python3.9 -m pip install --upgrade pip

# Install Cloudant
/usr/bin/python3.9 -m pip install Cloudant

# Install Flask
/usr/bin/python3.9 -m pip install Flask

0 comments on commit 149265a

Please sign in to comment.