Skip to content

Instantly share code, notes, and snippets.

@caglartoklu
Last active July 10, 2020 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save caglartoklu/59a106ea5cca47a093449f0d55627766 to your computer and use it in GitHub Desktop.
Save caglartoklu/59a106ea5cca47a093449f0d55627766 to your computer and use it in GitHub Desktop.
A .bat file to install Python packages I mostly use for WinPython.
REM Tested with WinPython:
REM https://winpython.github.io/
REM Winpython32-3.7.4.1.exe
REM
REM packages already installed in WinPython:
REM python -m pip install pylint
REM python -m pip install pep8
REM python -m pip install autopep8
REM python -m pip install pycodestyle
REM python -m pip install pyinstaller
REM python -m pip install flask
REM python -m pip install pygame
REM and much more:
REM https://github.com/winpython/winpython/blob/master/changelogs/WinPython-32bit-3.7.4.1.md
REM
REM A curated list of awesome Python frameworks, libraries, software and resources:
REM https://github.com/vinta/awesome-python
REM Use the latest version of pip:
python -m pip install --upgrade pip
python -m pip install opencv-python
pause
REM python -m pip install arcade
REM pause
python -m pip install openpyxl
pause
REM python -m pip install virtualenv
REM pause
REM python -m pip install nose2
REM pause
python -m pip install flask-restful
pause
python -m pip install pip-autoremove
pause
REM python -m pip install rst2html5
REM pause
python -m pip install pysimplegui
pause
python -m pip install asciimatics
pause
python -m pip install rich
pause
python -m pip install readchar
pause
python -m pip install inquirer
pause
python -m pip install git+https://github.com/caglartoklu/spyonde
pause
REM for Atom editor et all:
REM python -m pip install 'python-language-server[all]'
REM pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment