$ python
>>> from chainer import cuda
>>> cuda.init(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "(python directory)/site-packages/chainer/cuda.py", line 125, in init
cumisc.init(mem_alloc)
TypeError: init() takes no arguments (1 given)
It looks like the scikits.cuda package version wasn't right (I failed with 0.42)
$ pip uninstall scikits.cuda
$ pip install scikits.cuda==0.5.0b3
If Mako doesn't have a package, put it in
$ pip install Mako
Recommended Posts