Windows中的pylearn2 - setup.py出了问题

时间:2013-08-02 22:31:21

标签: python windows module install

我正在尝试在Windows中安装Pylearn2软件包(Pylearn2)。我正在使用Spyder / Anaconda IDE来使用python。

在源文件中有一个名为setup.py的脚本。但是,当我尝试运行它时,我收到以下错误消息:

usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help

error: no commands supplied`

翻译停止工作。这是setup.py脚本中的代码:

from setuptools import setup, find_packages

setup(
    name='pylearn2',
    version='0.1dev',
    packages=find_packages(),
    description='A machine learning library build on top of Theano.',
    license='BSD 3-clause license',
    long_description=open('README.rst').read(),
    install_requires=['numpy>=1.5', 'theano', 'pyyaml', 'argparse'],
    package_data={
    '': ['*.txt', '*.rst', '*.cu', '*.cuh', '*.h'],
    },
)

我真的不知道该怎么做。我搜索了网络,但没有找到太多帮助。 如果可以,请帮忙。

1 个答案:

答案 0 :(得分:0)

通常用于setup.py:

>python setup.py build && python setup.py install

完整文档:here以及更详细的信息!