here2share

# pippy_mod_quick_install.py

Jan 5th, 2022 (edited)
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.37 KB | None | 0 0
  1. # pippy_mod_quick_install.py
  2.  
  3. # checked thru pypi[.]org and picked out what seemed good enough to install
  4.  
  5. import sys
  6. import subprocess
  7. py = sys.executable
  8. install = py[:-11]+'\\Scripts\\easy_install.exe'
  9. print(install)
  10.  
  11. def install(mod):
  12.     mod = mod.strip()
  13.     ans = input('''\n\n*** Download To (Re-)Install "%s" ?(Y/N) : ''' % mod).strip()
  14.     ans += 'n'
  15.     if ans.lower()[0] == 'y':
  16.         print('''*** Please Wait...''')
  17.         subprocess.run([install, '-m', 'install', mod], shell=True)
  18.     else:
  19.         print('''*** Okay... Skipped.''')
  20. 0
  21.  
  22. zzz='''
  23. auto-py-to-exe
  24. AwesomeTkinter
  25. beautifulsoup4
  26. buildozer
  27. clipboard
  28. clix
  29. collections
  30. csv
  31. Cython
  32. Django
  33. docutils
  34. Flask
  35. GitPython
  36. httplib2
  37. image
  38. ipython
  39. json5
  40. kbtype
  41. keras
  42. Kivy
  43. matplotlib
  44. mechanize
  45. music-syn
  46. numba
  47. numpy
  48. opencv-wrapper
  49. pandas
  50. easy-pil
  51. Pillow-PIL
  52. Pillow
  53. pip
  54. py2exe
  55. PyAudio
  56. pygame
  57. pyglet
  58. pygubu
  59. pyinstall
  60. pyOpenGL
  61. pyopengltk
  62. pyperclip3
  63. PyQt6
  64. pyquery
  65. PySimpleGUI
  66. python-music
  67. pytorch
  68. pywin32
  69. requests2
  70. scipy
  71. selenium
  72. setuptools
  73. SimpleGUITk
  74. simplejson
  75. synth
  76. synthesize
  77. Theano
  78. tkdesigner
  79. TKinterModernThemes
  80. ttkbootstrap
  81. ttkthemes
  82. urllib3
  83. virtualenv
  84. wheel
  85. youtube_dl
  86. youtube-unofficial
  87. ytpo
  88. '''.splitlines()[1:-1]
  89.  
  90. for z in zzz:
  91.     install(z)
  92.  
  93. # ???
  94. '''
  95. celery
  96. colorama
  97. easyAI
  98. jedi
  99. musicplayer
  100. neurolab
  101. nltk
  102. PyQt5
  103. scikit-learn
  104. simpleai
  105. six
  106. wxPython
  107. youtube-dl2
  108. '''
Add Comment
Please, Sign In to add comment