Skip to content

Commit

Permalink
Merge pull request #147 from angelapwen/master
Browse files Browse the repository at this point in the history
Update README with MacOS Gif, add Mac Installation Troubleshooting Tips
  • Loading branch information
the-ethan-hunt authored Mar 14, 2019
2 parents a2d114a + 4732912 commit 0124045
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You can install B.E.N.J.I. on your laptop by cloning this repository as of first
Note:If a module is not found, then install each module by: pip install modulename<br>
P.S. B.E.N.J.I. now works for Windows, Linux and Mac OS :tada:

#### Mac installation Troubleshooting
#### Mac Installation Troubleshooting

````
creating build/temp.macosx-10.12-x86_64-3.6/src
Expand All @@ -78,6 +78,30 @@ ModuleNotFoundError: No module named 'PIL'
```
Command to solve the above: ```pip3 install Pillow```

```
Traceback (most recent call last):
File "MacOS/benji.py", line 10, in <module>
import wikipedia
ModuleNotFoundError: No module named 'wikipedia'
```
Command to solve the above: ```pip3 install wikipedia```

```
Traceback (most recent call last):
File "MacOS/benji.py", line 21, in <module>
import speech_recognition as sr
ModuleNotFoundError: No module named 'speech_recognition'
```
Command to solve the above: ```pip3 install SpeechRecognition```

```
Traceback (most recent call last):
File "MacOS/benji.py", line 23, in <module>
import pyttsx3
ModuleNotFoundError: No module named 'pyttsx3'
```
Command to solve the above: ```pip3 install pyttsx3```

Change the pip version above according to what you have installed on your mac.

### B.E.N.J.I working in Linux
Expand All @@ -86,6 +110,9 @@ Change the pip version above according to what you have installed on your mac.
### B.E.N.J.I working on Windows
![Working on Windows](working-benji-windows.gif)

### B.E.N.J.I working on Mac
![Working on Windows](working-benji-mac.gif)

### Contributing

[(Back to top)](#list-of-contents)
Expand Down
Binary file added working-benji-mac.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0124045

Please sign in to comment.