Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrected the typos in readme.md #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@

## Install dependencies

1. Do the following before installing the dependencies found in `requirements.txt` file because of current challenges installing `onnxruntime` through `pip install onnxruntime`.
1. Do the following before installing the dependencies found in the `requirements.txt` file because of current challenges installing `onnxruntime` through `pip install onnxruntime`.

- For MacOS users, a workaround is to first install `onnxruntime` dependency for `chromadb` using:

```python
conda install onnxruntime -c conda-forge
```
See this [thread](https://github.com/microsoft/onnxruntime/issues/11037) for additonal help if needed.
See this [thread](https://github.com/microsoft/onnxruntime/issues/11037) for additional help if needed.

- For Windows users, follow the guide [here](https://github.com/bycloudai/InstallVSBuildToolsWindows?tab=readme-ov-file) to install the Microsoft C++ Build Tools. Be sure to follow through to the last step to set the enviroment variable path.
- For Windows users, follow the guide [here](https://github.com/bycloudai/InstallVSBuildToolsWindows?tab=readme-ov-file) to install the Microsoft C++ Build Tools. Be sure to follow through to the last step to set the environment variable path.


2. Now run this command to install dependenies in the `requirements.txt` file.
2. Now run this command to install dependencies in the `requirements.txt` file.

```python
pip install -r requirements.txt
```

3. Install markdown depenendies with:
3. Install markdown dependencies with:

```python
pip install "unstructured[md]"
Expand Down