How to install AutoEQ for Windows 64-bit:
Note: The instructions are already provided on the AutoEQ
github page, but I figure I'd simplify it for those interested...
1. Install Git (download
link). Get latest 64-bit. At this time, it was version 2.31.1.
When installing, check the "Use the native Windows Secure Channel library" option, not the "use the OpenSSL library".
2.
Download the latest 64-bit version of Python 3.8.x (
DO NOT INSTALL Python 3.9.x since it will FAIL when installing dependencies)
From the time I wrote this, I see that the latest version is python
3.8.9 (released on April 2, 2021) (
direct link).
When installing, make sure to enable "Add Python 3.8 to PATH" option.
Once it's installed, make sure to click on "Disable Path Length Limit", before hitting "close".
3. Install Microsoft Visual C++ Redistributable for Visual Studio 2015, 2017, and 2019.
Direct link.
Simple installation, with nothing to configure.
4. start menu, type
cmd
, type:
git clone https://github.com/jaakkopasanen/AutoEq.git
This takes several minutes to download the necessary files (over 1gb in size).
5. type and wait for each cmd to finish:
cd autoeq
python -m venv venv
venv\Scripts\activate.bat
python -m pip install -U pip
python -m pip install -U -r requirements.txt
That's it.
To verify that it's working type:
python autoeq.py --help
If you see the list of commands that AutoEQ accepts, then everything worked 100%. If you see any error message, then something went wrong.
But if you followed my guide, it should have worked.
Then run the script
python autoeq.py ....
as needed.
Hopefully this helped you out!