作者 lemon

fix bug1

正在显示 1 个修改的文件 包含 1 行增加1 行删除
@@ -5,7 +5,6 @@ @@ -5,7 +5,6 @@
5 # @File : setup.py.py 5 # @File : setup.py.py
6 # @Software: PyCharm 6 # @Software: PyCharm
7 7
8 -from bin import start  
9 import os 8 import os
10 9
11 with os.popen('pip3 freeze') as p: 10 with os.popen('pip3 freeze') as p:
@@ -23,4 +22,5 @@ for name, ver in li: @@ -23,4 +22,5 @@ for name, ver in li:
23 res = os.popen('pip3 install %s==%s' % (name, ver)).read() 22 res = os.popen('pip3 install %s==%s' % (name, ver)).read()
24 print(res) 23 print(res)
25 24
  25 +from bin import start
26 start.core.run() 26 start.core.run()