chatdocs icon indicating copy to clipboard operation
chatdocs copied to clipboard

Conda Installation? Anyone got it running?

Open Ananderz opened this issue 2 years ago • 4 comments

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?

Ananderz avatar Jul 07 '23 10:07 Ananderz

I have. What are you specifically running into?

skye-repos avatar Jul 07 '23 14:07 skye-repos

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?

Ananderz avatar Jul 08 '23 11:07 Ananderz

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.

skye-repos avatar Jul 08 '23 13:07 skye-repos

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

Pedroman1 avatar Jul 22 '23 22:07 Pedroman1