From c03f7b0eeab3fa5b2ceae9337521859504750ba8 Mon Sep 17 00:00:00 2001 From: Dmitry Kolomatskiy <58207913+lemontree210@users.noreply.github.com> Date: Thu, 5 Jan 2023 17:05:27 +0300 Subject: [PATCH] add link to tmux --- Hosting-your-bot.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Hosting-your-bot.md b/Hosting-your-bot.md index 4e632ba..cd1e58c 100644 --- a/Hosting-your-bot.md +++ b/Hosting-your-bot.md @@ -81,6 +81,8 @@ or screen -d -r mybot ``` +A known alternative to `screen` is [`tmux`](https://github.com/tmux/tmux/wiki). + ## What to read next? If you plan on hosting multiple bots on your server, it's recommended to use `virtualenv`. It allows you to install and upgrade Python modules via `pip` for one project, without worrying how it affects other projects on the server. Read [this external article](http://docs.python-guide.org/dev/virtualenvs/) for more information.