You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ 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
33
33
Caesar-Cipher-Algorithm
34
34
$ cd Caesar-Cipher-Algorithm
35
35
$ dir # (Optional) To see the items in the Caesar-Cipher-Algorithm folder
36
36
$ python caesar_cipher.py # This command starts the program
37
37
```
38
38
**Alternatively:**
39
39
- Download <ahref="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 <ahref="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
+
```
41
62
42
63
# Report a bug :beetle:
43
64
If you experience any bugs or want to make a contribution, create an <ahref="https://github.com/codebytesz/Caesar-Cipher-Algorithm/issues">_issue_</a>.
0 commit comments