Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save osmanatam/d841a3ad7333de04fe276d2b8ef8d16d to your computer and use it in GitHub Desktop.

Select an option

Save osmanatam/d841a3ad7333de04fe276d2b8ef8d16d 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 pip3 install pylint
REM pip3 install pep8
REM pip3 install autopep8
REM pip3 install pycodestyle
REM pip3 install pyinstaller
REM pip3 install flask
REM pip3 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
pip3 install opencv-python
pause
pip3 install arcade
pause
pip3 install openpyxl
pause
pip3 install virtualenv
pause
pip3 install pysimplegui
pause
pip3 install asciimatics
pause
pip3 install nose2
pause
pip3 install flask-restful
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment