diff --git a/Detect and Translate Languages/README.md b/Detect and Translate Languages/README.md index a5c448d0..c9905314 100644 --- a/Detect and Translate Languages/README.md +++ b/Detect and Translate Languages/README.md @@ -12,19 +12,7 @@ This python script first records the user's voice and then convert it to text. A Install the following dependencies using pip ``` -$ pip install speech_recognition -``` - -``` -$ pip install langdetect -``` - -``` -$ pip install pyttsx3 -``` - -``` -$ pip install google_trans_new +$ pip install -r requirements.txt ``` #### Running the script diff --git a/Detect and Translate Languages/requirements.txt b/Detect and Translate Languages/requirements.txt new file mode 100644 index 00000000..47dc5e1d --- /dev/null +++ b/Detect and Translate Languages/requirements.txt @@ -0,0 +1,4 @@ +speech_recognition +langdetect +pyttsx3 +google_trans_new