Package: python3-pygpu
Version: 0.0+git160929.29ce960-1
Control: tags -1 patch

Importing this module requires the above:

$ python3
Python 3.5.3 (default, Jan 19 2017, 14:11:04)
[GCC 6.3.0 20170118] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygpu
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
File "/usr/lib/python3/dist-packages/pygpu/__init__.py", line 7, in <module>
    from . import gpuarray, elemwise, reduction
File "/usr/lib/python3/dist-packages/pygpu/reduction.py", line 9, in <module>
    from .tools import ScalarArg, ArrayArg, check_args, prod, lru_cache
  File "/usr/lib/python3/dist-packages/pygpu/tools.py", line 2, in <module>
    import six
ImportError: No module named 'six'
>>> exit()
# apt-get install python3-six
$ python3
Python 3.5.3 (default, Jan 19 2017, 14:11:04)
[GCC 6.3.0 20170118] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import pygpu
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
File "/usr/lib/python3/dist-packages/pygpu/__init__.py", line 15, in <module>
    from .tests import main
File "/usr/lib/python3/dist-packages/pygpu/tests/main.py", line 2, in <module>
    import nose.plugins.builtin
ImportError: No module named 'nose'

Reply via email to