#エラー内容
$ python
>>> from chainer import cuda
>>> cuda.init(1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "(pythonのディレクトリ)/site-packages/chainer/cuda.py", line 125, in init
cumisc.init(mem_alloc)
TypeError: init() takes no arguments (1 given)
#原因
scikits.cudaパッケージのバージョンが適切でなかったっぽい(0.42でやってたら失敗しました)
#解決方法
$ pip uninstall scikits.cuda
$ pip install scikits.cuda==0.5.0b3
Makoってパッケージが入ってなかったらそれも入れる
$ pip install Mako