Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 924 Bytes

README.md

File metadata and controls

48 lines (39 loc) · 924 Bytes

PAI_v2

Overview

Probabilistic AI repo for projects > 0.

Installation

Clone the Repository

To clone this repository, run the following command in your terminal:

git clone --recursive https://github.com/MauriceDHanisch/PAI_v2.git

Install Python Dependencies

Install python 3.9 for MAC OS:

brew install [email protected]

Install pipenv:

pip install pipenv

Create a new env using pipenv (which python eventually only for MAC OS)

pipenv --python $(which python3.9)

After cloning the repository, navigate to the project directory and install the required Python packages using Pipenv:

pipenv install

Problems with cryptography

If you have problems with cryptography, upgrade your setuptools:

pip install --upgrade setuptools

Install openssl:

brew install openssl

Reinstall cryptography:

pip install cryptography