Skip to content

Commit 480a492

Browse files
authored
Update README.md
1 parent 434b5fd commit 480a492

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313

1414
Easily drop data into Pandas from a SQL database, or upload your DataFrames to a SQL table. Tutorial found here: https://hackersandslackers.com/connecting-pandas-to-a-sql-database-with-sqlalchemy/
1515

16-
## Getting Started
16+
## Installation
1717

18-
Installation is recommended with Pipenv:
18+
**Installation via [Pipenv](https://pipenv-fork.readthedocs.io/en/latest/)**:
1919

2020
```shell
2121
$ git clone https://github.com/hackersandslackers/pandas-sqlalchemy-tutorial.git
@@ -25,12 +25,14 @@ $ pipenv update
2525
$ python3 main.py
2626
```
2727

28-
Alternatively, try installing via `setup.py`:
28+
**Installation via `requirements.txt`**:
2929

3030
```shell
3131
$ git clone https://github.com/hackersandslackers/pandas-sqlalchemy-tutorial.git
3232
$ cd pandas-sqlalchemy-tutorial
33-
$ python3 setup.py install
33+
$ python3 -m venv myenv
34+
$ source myenv/bin/activate
35+
$ pip3 install -r requirements.txt
3436
$ python3 main.py
3537
```
3638
-----

0 commit comments

Comments
 (0)