Skip to content

Commit fc55ddf

Browse files
authored
Update README.md
Include instruction on installing dependencies via pipfile
1 parent 112c8ba commit fc55ddf

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,25 @@ This package currently has 4 source files:
1313

1414
### Prerequisites
1515

16-
#### [Install Boto3](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html)
16+
#### [Install Python](https://www.python.org/downloads/)
17+
Once Python is installed, run ```pip install pipenv``` to install pipenv, enabling you to optionally create a virtual environment for the project via ```pipenv shell``` and use the pipfile to install dependencies via the ```pipenv install``` command.
1718

1819
#### Install OpenSSL
20+
21+
MacOS OpenSSL Installation
1922
```
2023
brew update
2124
brew install openssl
22-
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.zshrc (or ~/.bashrc)
23-
source ~/.zshrc (or ~/.bashrc)
25+
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.zshrc
26+
source ~/.zshrc
27+
```
28+
29+
Ubuntu OpenSSL Installation
30+
```
31+
sudo apt update
32+
sudo apt install openssl
33+
echo 'export PATH="/usr/bin/openssl:$PATH"' >> ~/.bashrc
34+
source ~/.bashrc
2435
```
2536

2637
#### Create AWS Account

0 commit comments

Comments
 (0)