Recover your Encrypted Bip38 Private Key – Part 3

Downloads
Brute_force38: https://github.com/fartcoin-project/brute_force38
Node.js: https://nodejs.org/en/download/
cd ~/brute_force38/
npm install -g n
npm link
npm install –save bip38
cd ~/brute_force38/node_modules/bip38/
npm i npm@latest -g
Make a comment of line 128
// assert.deepEqual(salt, checksum)
save and exit
cd ~/brute_force38/
npm install
./start.js or node start.js

Brute-Force Encrypted Bip38 Private Key – Install Guide

Downloads
Brute_force38: https://github.com/fartcoin-project/brute_force38
Node.js: https://nodejs.org/en/download/

cd ~/brute_force38/
npm install -g n
npm link
npm install –save bip38
cd ~/brute_force38/node_modules/bip38/
npm i npm@latest -g

Make a comment of line 128
// assert.deepEqual(salt, checksum)
save and exit

cd ~/brute_force38/
npm install
./start.js or node start.js

Switch Python-2.7 to 3.7 in CMD.

Learn how to be able to switch between multiple Python versions in CMD for Windows 10.
1 Go to Control Panel, System, Advanced System Settings, Environmental Variables.
2 Edit the User and System Variables of PATH, delete both python values C:\Python27 and C:\Python27\Scripts
3 Add to PATH the variables %PYTHON_HOME% and %PYTHON_HOME%\Scripts
4 Now make a new Environmental Variable named PYTHON_HOME with the value C:\Python27
Until Command Prompt is closed we can now temporarily change the Python version from Python2.7 to Python3.7 with the following:
set PYTHON_HOME=C:\Python37
set PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PATH%
You can also save the following as py37.bat and run it in CMD
@echo off
echo setting PYTHON_HOME = C:\Python37
set PYTHON_HOME=C:\Python37
echo setting PATH = %PYTHON_HOME%;%PYTHON_HOME%\Scripts;
set PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PATH%