File tree 7 files changed +23
-16
lines changed
7 files changed +23
-16
lines changed Original file line number Diff line number Diff line change 12
12
You just need to launch one of the tool corresponding to your system:
13
13
- FOR WINDOWS: launch windowsPY.bat
14
14
- FOR LINUX: launch linuxPY.sh
15
- - FOR MAC: launch macPY.sh
15
+ - FOR MAC: launch macPY.command
16
16
17
17
And all is done it self, all your packages is now UP TO DATE!
18
18
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ import os
2
+ import sys
3
+
4
+ print "PyUp is checking if pip is installed on this machine......"
5
+
6
+ # Here the code to do after for cheking if yes or no the pip is installed
7
+ try :
8
+ import pip
9
+ print "Pip is present."
10
+ print "-------------------------"
11
+ print "PyUp is installing pip-review ....."
12
+ os .system ("pip install pip-review" )
13
+ os .system ("pip review" )
14
+ os .system ("pip-review --auto" )
15
+ except ImportError :
16
+ print "Pip is not present."
17
+ print "-------------------------"
18
+ print "Please use this link to install PIP FIRST: https://github.com/BurntSushi/nfldb/wiki/Python-&-pip-Windows-installation"
Original file line number Diff line number Diff line change 1
1
python presentation.py
2
- python checkIfPipInstalled.py
3
- pip install pip-review
4
- pip review
5
- pip-review --auto
2
+ python core.py
Original file line number Diff line number Diff line change
1
+ python presentation.py
2
+ python core.py
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
python presentation.py
2
- python checkIfPipInstalled.py
3
- pip install pip-review
4
- pip review
5
- pip-review --auto
2
+ python core.py
You can’t perform that action at this time.
0 commit comments