|
...
|
...
|
@@ -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() |
...
|
...
|
|