Skip to content

Commit

Permalink
Minor README updates related to .venv
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Jul 25, 2024
1 parent 254aee6 commit fc6bada
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ You can learn more about ADBC and Flight SQL [here](https://voltrondata.com/reso
Ensure you have Python 3.9+ installed, then open a terminal, then run:
```bash
# Create a Python virtual environment
python3 -m venv ./venv
python3 -m venv .venv

# Activate the virtual environment
. ./venv/bin/activate
. .venv/bin/activate

# Install the requirements including the new Arrow ADBC Flight SQL driver
pip install --upgrade pip
Expand Down Expand Up @@ -244,8 +244,8 @@ cmake --build build --target install

2. Install Python requirements for ADBC client interaction - (ensure you have Python 3.9+ installed first)
```bash
python3 -m venv ./venv
. ./venv/bin/activate
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install --requirement ./requirements.txt
````
Expand Down

0 comments on commit fc6bada

Please sign in to comment.