Skip to content

Commit

Permalink
Merge pull request #87 from mhmohona/patch-1
Browse files Browse the repository at this point in the history
Update README with Instructions for Activating Virtual Environment
  • Loading branch information
andrewtavis authored Mar 4, 2024
2 parents 6a807b9 + 8283359 commit 9ccbf61
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,21 @@ git remote add upstream https://github.com/scribe-org/Scribe-Data.git

2. Use [Python venv](https://docs.python.org/3/library/venv.html) to create the local development environment within your Scribe-Data directory:

- On Unix or MacOS, run:

```bash
python3 -m venv venv # make an environment named venv
source venv/bin/activate # activate the environment
```
- On Windows (using Command Prompt), run:

```bash
python -m venv venv
venv\Scripts\activate.bat
```
After activating the virtual environment, install the required dependencies by running:

```bash
python3 -m venv venv # make an environment venv
pip install --upgrade pip # make sure that pip is at the latest version
pip install -r requirements.txt # install dependencies
```
Expand Down

0 comments on commit 9ccbf61

Please sign in to comment.