From 3b7364d481f9951ae227017eca997377efd0d820 Mon Sep 17 00:00:00 2001 From: lepelog Date: Sun, 2 May 2021 20:49:51 +0200 Subject: [PATCH] Add requirements.txt with all necessary python dependencies and update README (#127) Co-authored-by: Pheenoh --- README.md | 3 ++- tools/requirements.txt | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 tools/requirements.txt diff --git a/README.md b/README.md index b336fa4184..94b9467827 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ And will eventually build all the [RELs](./docs/rels_sha1.md). 2. Run the executable located at `devkitPro\msys2\msys2.exe` 3. Update pacman by running the following command: `pacman -Syu` 4. Install the necessary dependencies by running the following command: `pacman -S python3-pip base-devel gcc vim cmake` -5. Change to the directory of where you cloned this repository and you are ready to build! +5. Change to the directory of where you cloned this repository +6. Install the required python dependencies with `python3 -mpip install -r tools/requirements.txt` ## Build Instructions diff --git a/tools/requirements.txt b/tools/requirements.txt new file mode 100644 index 0000000000..e4b338233a --- /dev/null +++ b/tools/requirements.txt @@ -0,0 +1,8 @@ +rich +click +intervaltree +yaz0 +numpy +capstone +aiofiles +GitPython \ No newline at end of file