Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I'm stuggling to import the qlik-sdk into my AWS EC2 instance Ubuntu. I've tried many, many comands so far:
The simplest sudo apt install python2-qlik-sdk gives me a not found error. I though the URL (https://pypi.org/project/qlik-sdk) wasn't reachable but I don't think that the case from other tests
I've treid a more complex pipx install
From the details log:
The following worked for me:
# Install python3-full if not present
sudo apt install python3-full python3-venv -y
# Create a venv (pick a path that makes sense for your use case)
python3 -m venv /home/emm/qlik-env
# Activate it
source /home/emm/qlik-env/bin/activate
# Install inside the venv
pip install qlik-sdk
# Confirm
python3 -c "import qlik_sdk; print(qlik_sdk.__version__)"
I hope that helps.
BR,
Eduardo Monteiro - Senior Support Engineer @ IPC Global
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
The following worked for me:
# Install python3-full if not present
sudo apt install python3-full python3-venv -y
# Create a venv (pick a path that makes sense for your use case)
python3 -m venv /home/emm/qlik-env
# Activate it
source /home/emm/qlik-env/bin/activate
# Install inside the venv
pip install qlik-sdk
# Confirm
python3 -c "import qlik_sdk; print(qlik_sdk.__version__)"
I hope that helps.
BR,
Eduardo Monteiro - Senior Support Engineer @ IPC Global
Follow me on my LinkedIn | Know IPC Global at ipc-global.com
Amazing, thanks! got that installed!
I had to change a couple of commands:
# Create a venv (pick a path that makes sense for your use case)
sudo python3 -m venv /home/emm/qlik-env
# Activate it
source /home/emm/qlik-env/bin/activate
# Install inside the venv
sudo /home/emm/qlik-env/bin/pip install qlik-sdk
# Confirm
python3 -c "import qlik_sdk; print(qlik_sdk.__version__)"
Thanks very much for helping me!