Pyplan

Pyplan is a graphical Integrated Development Environment for creating and sharing Data Analytics Apps.

Try it online

View the Project on GitHub pyplan/pyplan-ide

Pyplan

Pyplan is a Python development environment intended for easily creating and deploying data analytics apps. Different than a Jupyter Notebook, where code is structured as a list of sentences, in Pyplan code is contained in nodes that work as calculation steps, organized in a hierarchical influence diagram. Nodes can be evaluated, and its result inspected through a console output or rendered as a table or graph. User interfaces are created dragging nodes on a canvas. Final apps can be shared with one click to general audience.

Among its most prominent features you will find:

Screenshots

Influence Diagram

Influence Diagram

Interfaces (dashboards)

Interfaces

It includes many tutorials, examples and demos

Demos

Running Pyplan

The easiest way to run Pyplan is creating an account and login in here.

Installing and running Pyplan

Additionally you can install Pyplan in your own computer following the instructions below. In order to publish your apps on the web, you will need to create an account here.

Requirements

Pyplan requires you to have the Python 3.7 version (this specific version) installed on your computer (download here). If you already have Python 3.7 installed, you can proceed installing Pyplan following one of the alternatives described below.

Installing Pyplan using Conda

Assuming you have Conda installed in your computer, open the terminal and run this commands:

# Install
conda config --append channels pyplan
conda config --append channels conda-forge
conda create -n pyplan-ide python=3.7
conda activate pyplan-ide
conda install pyplan-ide

# Run
conda activate pyplan-ide
pyplan

Installing using PIP

On Linux:

Open the terminal and run this commands:

# Install
python3.7 -m venv pyplan
. pyplan/bin/activate
pip install --upgrade pip
pip install pyplan-ide

# Run
. pyplan/bin/activate
pyplan

On Windows:

Open the command line (CMD) and run this commands:

# Install
python3.7 -m venv pyplan
pyplan\Scripts\activate.bat
pip install --upgrade pip
pip install pyplan-ide

# Run
pyplan\Scripts\activate.bat
pyplan

Using Anaconda Navigator

Install

  1. Create and select new environment “pyplan-ide” for Python 3.7

    Restart Anaconda Navigator

  2. Add pyplan and conda-forge channels

    Restart Anaconda Navigator

  3. Find pyplan-ide app on Home section and click Install

Important

If doing an upgrade, first restart Anaconda Navigator in order to close any active Pyplan process.

This message will appear, make sure that pyplan-ide is selected:

Restart Anaconda Navigator

Run

User Guide

For User Guide please visit docs.pyplan.org

Community Support

For Community Support please visit community.pyplan.org