Pyplan is a graphical Integrated Development Environment for creating and sharing Data Analytics Apps.
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:
Influence Diagram
Interfaces (dashboards)
It includes many tutorials, examples and demos
The easiest way to run Pyplan is creating an account and login in here.
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.
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.
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
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
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
Create and select new environment “pyplan-ide” for Python 3.7
Add pyplan
and conda-forge
channels
Find pyplan-ide
app on Home section and click Install
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:
For User Guide please visit docs.pyplan.org
For Community Support please visit community.pyplan.org