Simple chat room using Raspberry Pi server with python socket programming
1.Install python on your local machine, run
pip install python3 (If command does not work, try type: pip3 install python3) or go to this link to download python: https://www.python.org/downloads/
2.Install kivy for the GUI, run
pip install kivy (If command does not work, try type: pip3 install kivy)- Open terminal
- Create a directory for this demo, run
mkdir demo_01- Go into the directory you just created, run:
cd demo_01- In your demo_01 directory, run
git clone git@github.com:swang63/X220PYChat.git- To view all the files in your directory, run:
ls- You should see all the files now.
- On server side, run
python server_scripts/server_test_two.py- On client side, run
python client_scripts/chat_client.py