The client component of the CIM (Command [Line] Instant Messenger) project, counterpart to the CIM Server.
Installers are not currently available.
There are precompiled executables in a portable format for Windows and Linux.
Caution
These precompiled executables are not currently stable and may cause errors. It is recommended to use the source code.
- Go to the releases page
- Go to the "Assets" section of the latest release
- Download the appropriate compressed file for your operating system
- Windows:
cim-client-windows-portable.zip
- Linux:
cim-client-linux-portable.tar.gz
- Windows:
- Extract the compressed file to a directory of your choice
- You can now use the program through
cim-server.exe
(Windows) orcim-server.bin
(Linux)
- Have a Python 3 environment set up (recommended to use a version >= 3.8)
- Go to the releases page
- Download the source code compressed file
- Extract the compressed file to a directory of your choice
- Create a virtual environment (optional, but recommended)
- Run
python -m venv venv
(orpython3 -m venv venv
) in the directory - Activate the virtual environment with
venv\Scripts\activate
(Windows) orsource venv/bin/activate
(Linux)
- Run
- Install the required packages with
pip install -r requirements.txt
- You can now use the program through
python sim-client.py
(orpython3 sim-client.py
)
Important
As this client makes use of a TUI (Terminal User Interface), it is recommended to run the program in a modern terminal emulator.
For Windows specifically, it is recommended to use Windows Terminal instead of the default Command Prompt. For Linux, almost all terminal emulators should work fine.
The client is a command-line interface (CLI) program. Run the program with python sim-client.py
(or python3 sim-client.py
) to view the help message.