下面是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