Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Caster dependencies .bat files #264

Merged
merged 3 commits into from
Oct 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
@echo off
echo Installing: pywin32, dragonfly, pillow, psutil
echo Installing: dragonfly2, wxPython, pillow

cd c:\python27\scripts
pip install pywin32
pip install wxpython
pip install dragonfly
pip install setuptools
pip install dragonfly2
pip install -U wxPython
pip install pillow
pip install psutil
pip install toml

echo ------------------------------------------
echo Caster Dependencies Installation Complete
Expand Down
21 changes: 21 additions & 0 deletions caster/bin/inno/dependencies/Pip Uninstall Dependencies.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
@echo off
echo Uninstall dragonfly2, wxPython, pillow, six, pyperclip, pillow, pywin32
echo ####
echo #### Warning! Only uninstall dependencies that are no longer used for all Python projects.
echo ####

cd c:\python27\scripts
pip uninstall dragonfly2
pip uninstall wxPython
pip uninstall pillow
pip uninstall six
pip uninstall pyperclip
pip uninstall pillow
pip uninstall pywin32
pip uninstall toml

echo ------------------------------------------
echo Caster Dependencies Uninstall Complete
echo ------------------------------------------

pause