Skip to content

Commit f4d39c2

Browse files
committed
Add requirements.txt for library installation and update README instructions
1 parent a0e0a31 commit f4d39c2

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,13 @@ To set up a virtual environment, follow these steps:
5656
```sh
5757
source macenv/bin/activate
5858
```
59-
5. Install the required libraries:
59+
5. Install the required libraries using the `requirements.txt` file:
6060
```sh
61-
pip install openai pydantic sympy
61+
pip install -r requirements.txt
62+
```
63+
6. Or install the required libraries manuel:
64+
```sh
65+
pip install openai instructor pydantic sympy
6266
```
6367

6468
After setting up the virtual environment and installing the libraries, you're ready to run the script.
@@ -85,4 +89,3 @@ MIT License. See `LICENSE` for more details.
8589

8690
## Contributing
8791
Feel free to open issues or submit pull requests if you'd like to contribute or have ideas for improving this project.
88-

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
openai
2+
instructor
3+
pydantic
4+
sympy

0 commit comments

Comments
 (0)