Skip to content

instant_gratification

David Patterson edited this page Dec 19, 2022 · 41 revisions

Installation and Setup

Note: The instructions for Windows/Linux/MacOS are all the same.

In order to get PyBERT up and running on your machine:

  1. If you do not already have anaconda installed, install the Anaconda Python Distribution.

  2. After that completes, launch the Anaconda Command Prompt application. See Anaconda's Getting Started for more detail. Note: Do NOT use the Windows command prompt!

  3. Create a custom Anaconda environment:

    • conda create -n pybert
  4. Activate the environment:

    • conda activate pybert
  5. Install PyBERT into the environment, and test:

    • conda install -c dbanas -c defaults -c conda-forge pybert
    • pybert

Any trouble with above instructions, please send Anaconda command prompt full window screen shot to: "David Banas capn.freako@gmail.com".

PyPi and Pip Support (Not Suggested)

It is highly encouraged that you follow the instructions above and use conda to install the application. Conda is able to install more performant libraries that are complied specifically for your operating system while pypi has to use a more generic option for some dependencies. That said pypi packages are uploaded and supported.

  1. Create a virtualenv and activate it. python -m venv --prompt pybert
  2. Install PyBERT into the environment: pip install PyBERT
  3. Start the application with pybert.
Clone this wiki locally