From 79da99a4f6d0b30e8862b7c64415ca717463be67 Mon Sep 17 00:00:00 2001 From: przvlprd Date: Wed, 29 Nov 2023 22:17:34 +0100 Subject: [PATCH] added conda environment setup file --- .gitignore | 1 + environment.yml | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 environment.yml diff --git a/.gitignore b/.gitignore index 3e58f53d..c7a000f0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ */__pycache__ */.DS_Store .DS_Store +.ipynb_checkpoints/ # old_notebooks \ No newline at end of file diff --git a/environment.yml b/environment.yml new file mode 100644 index 00000000..35949991 --- /dev/null +++ b/environment.yml @@ -0,0 +1,19 @@ +name: knowledge-graph +channels: + - conda-forge + - defaults +dependencies: + - python=3.11 + - pip>=23.3.1 + - pandas>=2.1.3 + - numpy>=1.26.2 + - networkx>=3.2.1 + - seaborn>=0.13.0 + - jupyterlab>=4.0.8 + - langchain>=0.0.335 + - pypdf>=3.17.0 + - pyvis>=0.3.1 + - tqdm>=4.38 + - yachalk>=0.1.5 + - pip: + - unstructured>=0.10.30