Installation on Windows#

  1. Download and install the desired Python version. The versions currently supported are:
  2. Make sure to add the path to python.exe to your PATH variable like:

    $ set PATH=c:\[PYTHON_INSTALL_DIR];%PATH%
    
  3. Download the zip file containing the latest whl file, example programs, and the html documentation and unzip the file to any location on your PC.
  4. Navigate to the unzipped folder location.

    $ cd [Unzip folder location]
    
  5. [Optional]

    Create a virtual environment using the command:

    $ python.exe -m venv [venv-name]
    

    To activate the virtual environment run the following command:

    $ [venv-name]\Scripts\activate
    
  6. To install BFModule using the wheel file:

    (venv-name) $ python.exe -m pip install BFModule-X.x.x-cpXX-cpXX-win_amd64.whl
    

Where, BFModule-X.x.x-cpXX-cpXX-win_amd64.whl is the name of the WHL file in the extracted folder.