diff --git a/README.md b/README.md index 3f1725b..35d9cef 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,20 @@ A writeup of everything I currently know about quantum mechanics, especially the schrodinger equation. +## Creating assets + +Install python dependencies: + +```bash +pip3 install -r requirements.txt +``` + +Run all python files: + +```bash +./prepareAssets.sh +``` + ## Building Install all necessary packages: diff --git a/README.md b/README.md index 3f1725b..35d9cef 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,20 @@ A writeup of everything I currently know about quantum mechanics, especially the schrodinger equation. +## Creating assets + +Install python dependencies: + +```bash +pip3 install -r requirements.txt +``` + +Run all python files: + +```bash +./prepareAssets.sh +``` + ## Building Install all necessary packages: diff --git a/prepareAssets.sh b/prepareAssets.sh new file mode 100755 index 0000000..b5ce5f3 --- /dev/null +++ b/prepareAssets.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +files=$(ls src/python/*.py) + +for file in $files; do + echo "Running $file..." + python3 "$file" +done diff --git a/README.md b/README.md index 3f1725b..35d9cef 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,20 @@ A writeup of everything I currently know about quantum mechanics, especially the schrodinger equation. +## Creating assets + +Install python dependencies: + +```bash +pip3 install -r requirements.txt +``` + +Run all python files: + +```bash +./prepareAssets.sh +``` + ## Building Install all necessary packages: diff --git a/prepareAssets.sh b/prepareAssets.sh new file mode 100755 index 0000000..b5ce5f3 --- /dev/null +++ b/prepareAssets.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +files=$(ls src/python/*.py) + +for file in $files; do + echo "Running $file..." + python3 "$file" +done diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..6ccafc3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +matplotlib