1. To use Way, you need to install the Python runtime environment.
2. Way is based on Python3.8.
3. Up to now, v1.01-1.0.9 is written using pure native Python built-in library.
4. So you don't need to install any third party libraries, you can use Way out of the box. The list of built-in libraries used is as follows:
v1.01-v1.0.8 collection:
import os
import sys
import json
import time
import shutil
import hashlib
import webbrowser
import multiprocessing
from pathlib import Path
v1.0.9 updated as follows :
import os
import json
import time
import shutil
import hashlib
import webbrowser
from pathlib import Path
from multiprocessing import Process, Queue