import os
import sys

PYTHON_PATH = sys.executable
file_path = os.path.dirname(sys.argv[-1]) + '/server.py'
os.system(f'{PYTHON_PATH} {file_path}')