Aloha to all on the forum! I am back with a whole new avenue of approach from where I left off
https://bitcointalksearch.org/topic/need-help-with-bitcoin-seed-phrase-recovery-using-3rditeration-btcrecover-5325117https://bitcointalksearch.org/topic/looking-for-a-working-configuration-for-a-btcrecover-seedlist-token-file-5326228Installing BTCrecover on Ubuntu is simpler than what I made it out to be. It's tedious but I got the working order of command line arguments for a simple & streamlined method
Download the Ubuntu 20.04 ISO from the appropriate site
https://releases.ubuntu.com/20.04/Then you will need to mount the ISO as bootable media on a usb stick using Rufus
You can download the utility from
https://rufus.ie/en_US/Here is a quick instructional video how to use Rufus
https://www.youtube.com/watch?v=cQfCvoAEY7wWhen installing Ubuntu on your chosen hardware, select the minimal install option.
When your Ubuntu OS is up and running, download the latest ZIP file of 3rditeration BTCrecover
https://github.com/3rdIteration/btcrecover/archive/refs/heads/master.zipExtract the ZIP to the desktop
When completed, right click the new BTCrecover folder to open a terminal
You will need to run terminal with su system permissions
Then, one by one, use these terminal commands in order
sudo apt-get update
sudo apt install python3-pip
pip3 install -r requirements.txt
pip3 install -r requirements-full.txt
(Might be redundant, might not but this is what I had to do)
sudo apt install python3-tk
(you will need the python3 tkinter for the GUI to work in Linux)
sudo apt-get upgrade
At your discretion, check
https://btcrecover.readthedocs.io/en/latest/GPU_Acceleration/ to see if your GPU is compatible to run with pyopencl.
Follow the Linux instructions 1/3 down the page. This is optional but will greatly speed up results if implemented
If you followed all the steps above to completion, your Ubuntu OS should be primed for running this final test command (With or without pyopencl. It will just skip certain tests without it.)
python3 run-all-tests.py -vv
If all goes well you should blast though the 500 or so tests in less than 2 minutes. You should now be ready to run BTCrecover in Linux
Big kudos goes out to 3rditeration/Cryptoguide for all the hard work he's put into helping us all in the crypto community.