安装后不运行python模块

时间:2018-05-10 08:16:08

标签: python

我尝试安装模块并成功完成。但是在安装它并在点子列表上看到它之后,出于某种原因我无法运行它。每次执行py文件时都会弹出一个记事本。这是我的setup.py:

try:
    from setuptools import setup except ImportError:
    from distutils.core import setup

config = {
    'description': 'My Project',
    'author': 'My Name',
    'url': 'URL to get it at.',
    'download_url': 'Where to download it',
    'author_email': 'My email',
    'version': '0.1',
    'install_requires': ['nose'],
    'packages': ['try2'],
    'scripts': ['bin/try2.py'],
    'name': 'try2' }

setup(**config)

0 个答案:

没有答案