从egg文件运行python脚本

时间:2020-03-09 10:57:21

标签: python python-2.7

我具有以上项目结构。 enter image description here

下面是setup.py的内容

from setuptools import setup, find_packages

setup(name='test',
      version='1.0.0',
      description='testing of egg creation',
      packages=['test_proj'])

我正在使用命令python setup.py bdist_egg创建egg文件。 但是在使用python dist/test-1.0.0-py2.7.egg运行egg文件时 我遇到错误了。

python: can't open file 'dist/test-1.0.0-py2.7.egg': [Errno 2] No such file or directory

我正在使用python 2.7

0 个答案:

没有答案