Cvb.whl . Wheel file missing for python 3.8

Hi @bghtech,

first of all: the python wheel for python version 3.8 will be shipped with one of the next CVB releases.

The problem was a change in the library loading behavior of python 3.8.

For the moment you can fix the import behavior as follows:

  • Download the following file init.py.zip|attachment (3.0 KB) and extract it.

  • please look for your local site-packages, where cvb is installed. You can use the following cmd

    python -c "import site; print(site.getsitepackages())"
    

    (it mostly looks like (…)/Python/Lib/site-packages)

  • change to the cvb directory in there and replace the _init_.py by the extracted one from above.

1 Like