Skip to content

linhnph05/Socket-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Socket-python

Setup for 1 machine

Setup for MacOS/Linux

git clone https://github.com/linhnph05/Socket-python
cd Socket-python
python3 -m venv venv 
source venv/bin/activate
pip3 install -r requirements.txt

Client

cd client
python3 client.py

Server

cd server
python3 server.py

Setup for Windows

git clone https://github.com/linhnph05/Socket-python
cd Socket-python
python3 -m venv venv 
.\venv\Scripts\activate
pip3 install -r requirements.txt

Client

cd client
python3 client.py

Server

cd server
python3 server.py

Setup for 2 machine

MacOS/Linux

Client

git clone https://github.com/linhnph05/Socket-python
cd Socket-python/client
python3 -m venv venv 
source venv/bin/activate
pip3 install -r requirements.txt
python3 client.py

Server

git clone https://github.com/linhnph05/Socket-python
cd Socket-python/server
python3 -m venv venv 
source venv/bin/activate
pip3 install -r requirements.txt
python3 server.py

Windows

Client

git clone https://github.com/linhnph05/Socket-python
cd Socket-python/client
python3 -m venv venv 
.\venv\Scripts\activate
pip3 install -r requirements.txt
python3 client.py

Server

git clone https://github.com/linhnph05/Socket-python
cd Socket-python/server
python3 -m venv venv 
.\venv\Scripts\activate
pip3 install -r requirements.txt
python3 server.py

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages