How to create Python egg file

前端 未结 3 938
迷失自我
迷失自我 2020-11-29 16:08

I have questions about egg files in Python.

I have much Python code organized by package and I\'m trying to create egg files. I\'m following instructions, but they a

3条回答
  •  迷失自我
    2020-11-29 16:36

    I think you should use python wheels for distribution instead of egg now.

    Wheels are the new standard of python distribution and are intended to replace eggs. Support is offered in pip >= 1.4 and setuptools >= 0.8.

提交回复
热议问题