From b4a08ad2506d4640ffe1081955d55528f3965ff4 Mon Sep 17 00:00:00 2001 From: Isaac Karth Date: Wed, 16 Aug 2023 23:27:48 -0700 Subject: [PATCH 1/2] added installation instructions --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 85921ec..678db29 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,17 @@ This is my research implementation of WaveFunctionCollapse in Python. It has two For more general-purpose WFC information, the original reference repository remains the best resource: https://github.com/mxgmn/WaveFunctionCollapse +## Installing + +``` +git clone https://github.com/ikarth/wfc_2019f.git +cd wfc_2019f +conda create -n wfc2019 python=3.10 +conda activate wfc2019 +pip install -r requirements.txt +python wfc_run.py -s samples_reference.xml +``` + ## Running WFC If you want direct control over running WFC, call `wfc_control.execute_wfc()`. From 01e802c5ff57eb0c661e1a44ac1e40cf5ed22b37 Mon Sep 17 00:00:00 2001 From: Isaac Karth Date: Fri, 18 Aug 2023 08:52:49 -0700 Subject: [PATCH 2/2] Update pyproject.toml Added scipy --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 93c0fd2..7435a26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ dependencies = [ "imageio", "matplotlib", "numpy", + "scipy" ] [project.optional-dependencies]