Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # pippy_mod_quick_install.py
- # checked thru pypi[.]org and picked out what seemed good enough to install
- import sys
- import subprocess
- py = sys.executable
- install = py[:-11]+'\\Scripts\\easy_install.exe'
- print(install)
- def install(mod):
- mod = mod.strip()
- ans = input('''\n\n*** Download To (Re-)Install "%s" ?(Y/N) : ''' % mod).strip()
- ans += 'n'
- if ans.lower()[0] == 'y':
- print('''*** Please Wait...''')
- subprocess.run([install, '-m', 'install', mod], shell=True)
- else:
- print('''*** Okay... Skipped.''')
- 0
- zzz='''
- auto-py-to-exe
- AwesomeTkinter
- beautifulsoup4
- buildozer
- clipboard
- clix
- collections
- csv
- Cython
- Django
- docutils
- Flask
- GitPython
- httplib2
- image
- ipython
- json5
- kbtype
- keras
- Kivy
- matplotlib
- mechanize
- music-syn
- numba
- numpy
- opencv-wrapper
- pandas
- easy-pil
- Pillow-PIL
- Pillow
- pip
- py2exe
- PyAudio
- pygame
- pyglet
- pygubu
- pyinstall
- pyOpenGL
- pyopengltk
- pyperclip3
- PyQt6
- pyquery
- PySimpleGUI
- python-music
- pytorch
- pywin32
- requests2
- scipy
- selenium
- setuptools
- SimpleGUITk
- simplejson
- synth
- synthesize
- Theano
- tkdesigner
- TKinterModernThemes
- ttkbootstrap
- ttkthemes
- urllib3
- virtualenv
- wheel
- youtube_dl
- youtube-unofficial
- ytpo
- '''.splitlines()[1:-1]
- for z in zzz:
- install(z)
- # ???
- '''
- celery
- colorama
- easyAI
- jedi
- musicplayer
- neurolab
- nltk
- PyQt5
- scikit-learn
- simpleai
- six
- wxPython
- youtube-dl2
- '''
Add Comment
Please, Sign In to add comment