Forked from caglartoklu/python_install_for_winpython.bat
Created
March 24, 2020 08:57
-
-
Save osmanatam/d841a3ad7333de04fe276d2b8ef8d16d to your computer and use it in GitHub Desktop.
A .bat file to install Python packages I mostly use for WinPython.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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