Skip to content

Commit

Permalink
Merge pull request #123 from pragati2112/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
srbhr authored Aug 28, 2023
2 parents f4d5c36 + 852ca0d commit e5a338a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,42 @@ Follow these steps to set up the environment and run the application.
source env/bin/activate
```

**OPTIONAL (if anybody is using pyenv)**

Run application with pyenv (Refer this link - https://realpython.com/intro-to-pyenv/#installing-pyenv)

- Build dependencies (on ubuntu)
```
sudo apt-get install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python openssl
```
```
sudo apt-get install build-essential zlib1g-dev libffi-dev libssl-dev libbz2-dev libreadline-dev libsqlite3-dev liblzma-dev libncurses-dev
sudo apt-get install python-tk python3-tk tk-dev
sudo apt-get install build-essential zlib1g-dev libffi-dev libssl-dev libbz2-dev libreadline-dev libsqlite3-dev liblzma-dev
```
- pyenv installer
```
curl https://pyenv.run | bash
```
- Install desired python version
```
pyenv install -v 3.11.0
```

- pyenv with vurtual enviroment
```
pyenv virtualenv 3.11.0 venv
```

- Activate virtualenv with pyenv
```
pyenv activate venv
```

5. Install Dependencies:

```bash
Expand Down

0 comments on commit e5a338a

Please sign in to comment.