diff --git a/README.md b/README.md index dc14e33..344dccd 100644 --- a/README.md +++ b/README.md @@ -7,11 +7,8 @@ A simple Python program using artificial intelligence libraries to recognize num To use this code, you'll need to install [Python](https://www.python.org/downloads/) and several libraries. You can install them using `pip` command: -```pip install numpy -pip install Image -pip install os -pip install keras -pip install tensorflow +``` +pip install -r requirements.txt ``` >**Note:** Use cmd in administrator mode for installation @@ -20,4 +17,4 @@ pip install tensorflow Just open `AI.py` from AI folder. ->**Note:** You can add your .png images to `img` folder \ No newline at end of file +>**Note:** You can add your .png images to `img` folder diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b70dcb7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +numpy +keras==2.12.0 +tensorflow==2.13.0 +pillow==9.4.0