forked from reecemartin/photomanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.txt
More file actions
48 lines (20 loc) · 1015 Bytes
/
help.txt
File metadata and controls
48 lines (20 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
This needs to be updated***
Running Photomanager from Git Bash
1) Ensure javac is in your path, you can check this by entering
>echo $PATH
in your git bash.
If javac is in your path proceed to 2) otherwise proceed to 1b).
1b) In this case you do not currently have javac in your path, but fear not!
First locate your JDK and find the path to the bin folder. The JDK is typically
located under C/users/programfiles/java on Windows Machines. Once you have the path
run the following command
>export PATH=$PATH:"/your-path-here/bin/"
this command will add javac to your path.
2) Next cd into the group_0451/phase1/src/main/java folder in your git bash.
Enter the following command
>javac -classpath .;../../../res/*.jar -D com/PhotoManager/GUInterface.java
the command should exit upon execution, it may suggest recompiling with xlint
but this is unnecessary.
3) Now you're ready to rock! While located in the source folder enter
>java PhotoManager.GUInterface
and the program will run!