marella / chatdocs

Chat with your documents offline using AI.
MIT License
684 stars 99 forks source link

Conda Installation? Anyone got it running? #41

Open Ananderz opened 1 year ago

Ananderz commented 1 year ago

Hi!

I have been having some issues with dependencies lately and wanted to isolate an install over Conda. I am running into some issues. Anyone gotten this to run under Conda?

skye-repos commented 1 year ago

I have. What are you specifically running into?

Ananderz commented 1 year ago

Having dependency issues when I run install. Quite a lot of them.

Tried manually installing all the dependencies but still not able to get it to run properly. Do you have a guide as to how you did it?

skye-repos commented 1 year ago

try the following

conda deactivate
conda create -n chatdocs python=3.10
conda activate chatdocs

Then either run pip install chatdocs and see if it works, or, in your directory of choice

git clone https://github.com/marella/chatdocs.git
cd chatdocs
pip install -e .

It would be super helpful if you could post the logs/messages from your terminal emulator to pin point where your install is failing.

Pedroman1 commented 1 year ago

thanks for those

try the following

conda deactivate
conda create -n chatdocs python=3.10
conda activate chatdocs

Then either run pip install chatdocs and see if it works, or, in your directory of choice

git clone https://github.com/marella/chatdocs.git
cd chatdocs
pip install -e .

It would be super helpful if you could post the logs/messages from your terminal emulator to pin point where your install is

These instructions were so helpful thank you