reorder pyinstaller in quicksetup.py
This commit is contained in:
parent
fc0cd31f2f
commit
f125ffb4b4
@ -70,8 +70,8 @@ zip_ref = zipfile.ZipFile(BASSOPUSZIP, 'r')
|
|||||||
zip_ref.extract(BASSOPUSDLL)
|
zip_ref.extract(BASSOPUSDLL)
|
||||||
zip_ref.close()
|
zip_ref.close()
|
||||||
|
|
||||||
print "installing apng"
|
print "installing apng, six, appdirs, packaging"
|
||||||
pip_install("apng")
|
pip_install("apng six appdirs packaging")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
@ -87,8 +87,8 @@ except ImportError:
|
|||||||
print "installing Pillow 5.3.0"
|
print "installing Pillow 5.3.0"
|
||||||
pip_install("Pillow==5.3.0")
|
pip_install("Pillow==5.3.0")
|
||||||
|
|
||||||
print "installing pyinstaller, six, appdirs, packaging"
|
print "installing pyinstaller"
|
||||||
pip_install('six appdirs packaging ' + 'pyinstaller==2.1' if platform.system() == "Darwin" else 'pyinstaller==3.6')
|
pip_install('pyinstaller==2.1' if platform.system() == "Darwin" else 'pyinstaller==3.6')
|
||||||
|
|
||||||
if platform.system() == "Windows":
|
if platform.system() == "Windows":
|
||||||
print "downloading pyqt4"
|
print "downloading pyqt4"
|
||||||
|
Loading…
Reference in New Issue
Block a user