Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 1.02 KB

README.md

File metadata and controls

23 lines (16 loc) · 1.02 KB

Examples of integrating Qlik Sense and Python

To see this live watch this 8 minutes video https://youtu.be/nI-Bgal-dSM

Instructions below are for Python on Windows

In this example we will set up 2 Server-side Extensions for Qlik, each of which is a Python project

Steps to install Python (1st time)

  • download and install Python from https://www.python.org/downloads and make sure you get the 64 bit version, no 32 bit
  • add Python to the path
    alttext
  • install python libraries for easier project encapsulation (pip is the python package manager). From a Command Prompt run
pip install virtualenv
pip install virtualenvwrapper-win

alttext