diff --git a/setup.py b/setup.py index 5cf2aea..a72d7ec 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,6 @@ # @File : setup.py.py # @Software: PyCharm -from bin import start import os with os.popen('pip3 freeze') as p: @@ -23,4 +22,5 @@ for name, ver in li: res = os.popen('pip3 install %s==%s' % (name, ver)).read() print(res) +from bin import start start.core.run()