From 69e93dad25963e1a24077b99bb49e05d98e610f0 Mon Sep 17 00:00:00 2001 From: jpenguin Date: Fri, 18 Nov 2022 12:33:43 -0800 Subject: [PATCH 1/2] Update README.md Added example tested on Arch Linux --- docs/README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/README.md b/docs/README.md index 3b3da2c8..5ca9d450 100644 --- a/docs/README.md +++ b/docs/README.md @@ -56,6 +56,26 @@ source bcml_env/bin/activate # will activate the venv pip install bcml ``` +**Full Linux Example** + +`sudo pacman -S python39` Adjust for you distribution, arch defaults to a newer python + +```mkdir -p ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML +python3.9 -m venv /.local/bcml_env +source ~/.local/bcml_env/bin/activate +pip install bcmL +~/.local/bcml_env/bin/bcml +``` + +to launch BCML in the future + +`source ~/.local/bcml_env/bin/activate; ~/.local/bcml_env/bin/bcml` + +- In BCML, check 'without cemu' & 'disable links for master mod'; set export path to '~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML' +- install your mods + +`curl https://pastebin.com/raw/igCLK2tz -o ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt` + ### Building from Source Building from source requires, in addition to the general prerequisites: From 15afbb93d6f990b503d87b542016d9f6c2d407fe Mon Sep 17 00:00:00 2001 From: jpenguin Date: Mon, 21 Nov 2022 16:42:28 -0800 Subject: [PATCH 2/2] Update README.md --- docs/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/README.md b/docs/README.md index 5ca9d450..76638cd2 100644 --- a/docs/README.md +++ b/docs/README.md @@ -56,14 +56,14 @@ source bcml_env/bin/activate # will activate the venv pip install bcml ``` -**Full Linux Example** +**Full Linux Example with CEMU** `sudo pacman -S python39` Adjust for you distribution, arch defaults to a newer python ```mkdir -p ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML python3.9 -m venv /.local/bcml_env source ~/.local/bcml_env/bin/activate -pip install bcmL +python3.9 -m pip install bcml ~/.local/bcml_env/bin/bcml ``` @@ -71,10 +71,11 @@ to launch BCML in the future `source ~/.local/bcml_env/bin/activate; ~/.local/bcml_env/bin/bcml` -- In BCML, check 'without cemu' & 'disable links for master mod'; set export path to '~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML' +- In BCML, check 'without cemu' and set export path to '~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML' - install your mods +- execute `curl https://pastebin.com/raw/igCLK2tz -o ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt` -`curl https://pastebin.com/raw/igCLK2tz -o ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt` +* If your mods still don't load, verify that ~/.local/share/cemu/graphicPacks/BreathOfTheWild_BCML/rules.txt exist and try 'disable links for master mod' in BCML settings ### Building from Source