Skip to content

Commit d369428

Browse files
committed
init
1 parent f23ad92 commit d369428

1 file changed

Lines changed: 26 additions & 5 deletions

File tree

README.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NOTE: You must have python installed on your pc to be able to use this tool.
66
- <a href="https://realpython.com/installing-python/"><i>Guide</i></a> to install and setup python
77

88
## On PC
9-
- Download the <a href="https://github.com/HybridCodes/Caesar-Cipher-Algorithm/releases">_file_</a>
9+
- Download the <a href="https://github.com/HybridCodes/Caesar-Cipher-Algorithm/releases/latest">_file_</a>
1010
- Extract it into a folder
1111
- Open command prompt and navigate to the folder in which you extracted the file
1212

@@ -23,21 +23,42 @@ $ pkg install git
2323
$ pip install --upgrade pip
2424
$ termux-setup-storage # Allow access to storage
2525
$ cd storage
26-
$ dir # Execute this command to check the list of items in the directory in which you're currently in
27-
# In my case;
26+
$ dir # Execute this command to see the list of items in the directory you're currently in
27+
# In my case, the output is:
2828
dcim external-1 music shared
2929
downloads movies pictures
3030
$ cd downloads # To navigate to the downloads folder
3131
$ git clone https://github.com/codebytesz/Caesar-Cipher-Algorithm.git
32-
$ dir # To show the items in the downloads folder now, you should see the cloned item among the files listed
32+
$ dir # You should see the cloned item among the files listed
3333
Caesar-Cipher-Algorithm
3434
$ cd Caesar-Cipher-Algorithm
3535
$ dir # (Optional) To see the items in the Caesar-Cipher-Algorithm folder
3636
$ python caesar_cipher.py # This command starts the program
3737
```
3838
**Alternatively:**
3939
- Download <a href="https://play.google.com/store/apps/details?id=com.termux&hl=en_US&gl=US">_Termux_</a> from the play store
40-
- Download the file and extract it into a folder
40+
- Download the zip <a href="https://github.com/HybridCodes/Caesar-Cipher-Algorithm/releases/latest">_file_</a> and extract it into a folder
41+
- Open Termux and execute the following commands:
42+
```bash
43+
# Hit enter after typing each command to execute the command
44+
45+
$ pkg update && upgrade / -y
46+
$ pkg install python
47+
$ termux-setup-storage # Allow access to storage
48+
$ cd storage
49+
$ dir # (Optional) This command is to see the list of items in the directory you're currently in
50+
```
51+
- Navigate to the folder in which you extracted the file
52+
Mine is in `/downloads/..`
53+
```bash
54+
$ cd downloads
55+
$ dir
56+
#output
57+
Caesar-Cipher-Algorithm
58+
$ cd Caesar-Cipher-Algorithm
59+
$ dir # (Optional) To see the items in the Caesar-Cipher-Algorithm folder
60+
$ python caesar_cipher.py # This command starts the program
61+
```
4162

4263
# Report a bug :beetle:
4364
If you experience any bugs or want to make a contribution, create an <a href="https://github.com/codebytesz/Caesar-Cipher-Algorithm/issues">_issue_</a>.

0 commit comments

Comments
 (0)