How can we activate a virtualenv inside Qt Creator

4.3k Views Asked by At

Is there a way to activate a Python virtual environment inside Qt Creator, i.e. ensure that all the different commands that Qt Creator is issuing to prepare/analyse/build the current project are run inside a specific virtualenv?

This problem arises when trying to use Shiboken and PySide withing Qt Creator. For example, it is possible to successfully compile and run the "scriptableapplication" example in Pyside (across Windows, OSX and Linux) using CMake. However, and working on the same system, it is not possible to do so using Qt Creator and qmake, because the virtualenv is not activated. When opening the scriptableapplication.pro project in Qt Creator, it gives the following message:

Unable to locate shiboken2-generator. Did you forget to activate your virtualenv?

which is indeed true, the virtualenv is not activated for the shell commands that Qt Creator is issuing.

2

There are 2 best solutions below

1
On

Usually there is no need to activate a virtual environment, on the condition that you use the right paths for the interpreter or scripts.

For example instead of calling:

  • python3 -m site
  • python3 setup.py
  • pip

use the following calls:

  • path/to/venv/bin/python3 -m site
  • path/to/venv/bin/python3 setup.py
  • path/to/venv/bin/pip
0
On

You can try:

  1. Create a virtual environment in your main folder with command virtualenv env_name
  2. At left sidebar of Qt Creator, choose Projects -> Run Settings -> Interpreter -> Your virtual environment

enter image description here