PHẦN MỀM DOWNLOAD / UPLOAD FILE DÙNG KỸ THUẬT ĐA LUỒNG, KẾT NỐI BẰNG TCP
- You can download in release package or clone this repository:
git clone https://github.com/doanxem99/ClientServer.git
- Find and Click main.exe
- Enjoy :>
Open terminal and run this command:
python server.py
You should create virtual environment for easier remove when not needed.
To install python virtual environment
Window
python -m pip install --user virtualenv
python -m venv env
cd env
git clone https://github.com/doanxem99/ClientServer.git
pip install -r requirements.txt
Linux (* is version of python)
sudo apt install python3-tk
sudo apt install python*-venv
python -m venv env
cd env
git clone https://github.com/doanxem99/ClientServer.git
pip install -r requirements.txt
- Open terminal and go to virtual environment folder
- Use this command to activate virtual environment:
Window
call env\Scripts\activate
Linux
source env/bin/activate
- Run this command to start client GUI:
python main.py
- Open terminal and go to virtual environment folder
- Use this command to activate virtual environment:
Window
call env\Scripts\activate
Linux
source env/bin/activate
- Run this command to start server:
python server.py
