The latest release can be found in the releases tab. Download the latest "BasementRenovator.zip" file, unzip it, and then double click on the Basement Renovator executable program.
If the latest release isn't working for you or if you want to Basement Renovator from source, then follow the instructions below.
You can either follow the step-by-step instructions using Chocolatey, or the minimal instructions for people who have run Python programs from source before.
Running Basement Renovator from source requires Python to be installed, as well as some other dependencies. In order to install everything, we recommend using Chocolatey, which is a package manager for Windows. It is the defacto way to install software without having to manually click anything.
If you are not using Windows 10, see the section below.
- First, manually download and install the latest version of Python from the official website.
- Make sure that you check the box to add Python to your PATH. Otherwise, the below
python
commands will not work. - Do not install Python from Chocolatey, as it results in bugs with not being able to invoke command-line Python applications.
- Make sure that you check the box to add Python to your PATH. Otherwise, the below
- Open a Command Prompt as an administrator. (Read the link if you don't know how.)
- Install Chocolatey by copy-pasting the following command. (Skip this step if you have already have Chocolatey installed on your computer.)
@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
- Install Git by copy-pasting the following command. (Skip this step if you have already have Git installed on your computer.)
choco install git -y
- Install the Microsoft Visual C++ Build Tools 2015 by copy-pasting the following command. (This is needed in order to install the Python dependencies. Skip this step if you have already have it installed on your computer.)
choco install microsoft-visual-cpp-build-tools -y
- Change the working directory to your Documents directory:
cd %userprofile%\Documents
(if you want the Basement Renovator repository to live somewhere else, then change the command accordingly)
- Clone the Basement Renovator repository:
refreshenv
git clone https://github.com/Tempus/Basement-Renovator.git
- Go into the cloned directory:
cd Basement-Renovator
- Install the Python dependencies:
pip install -r requirements.txt
- Run it:
python BasementRenovator.py
- Wait up to 30 seconds or so for Basement Renovator to open. If it opens, you are done. In the future, you can just double click on the "BasementRenovator.py" file to open the program.
- Otherwise, read the error messages in the command prompt and try to figure out what went wrong.
This section has installation instructions for only installing what is explicitly needed. If you encounter errors, try following the Chocolatey instructions above.
- First, manually download and install the latest version of Python from the official website.
- Make sure that you check the box to add Python to your PATH. Otherwise, the below
python
commands will not work.
- Make sure that you check the box to add Python to your PATH. Otherwise, the below
- Download a copy of the source code, either by cloning the repository or by clicking here.
- Double-click the
BR.bat
file in the root of the install folder.- This will print your Python version, run
pip
to install BR's dependencies, and and then run "BasementRenovator.py". - After the program is closed or crashes, the console window will remain open so that you can read the error logs.
- This will print your Python version, run