-
Notifications
You must be signed in to change notification settings - Fork 17
Installation Guide
Welcome to the installation guide for the MasterCryptoFarmBot π.
This software provides a web interface that allows you to install and manage multiple modules to automate your Telegram crypto farm.
You can install the MasterCryptoFarmBot on Linux, Windows, Android, and macOS.
To install the MasterCryptoFarmBot on Windows, follow these steps:
-
Install Python 3.x.
- π During the installation, ensure you check the box labeled "Add Python to PATH".
- π‘ If you forget to add Python to your Windows PATH during installation, you can do it manually afterward. How to add Python to Windows PATH?
- π Also, check the box labeled "Install pip".
-
Install Git.
- π΅ (Optional) For a graphical user interface (GUI) for Git on Windows, consider installing TortoiseGit. This step is optional.
- π‘ After installation, open a Command Prompt and type
git --version
to verify the installation. If the command returns a version number, Git has been successfully installed. Otherwise, you need to add Git to your Windows PATH. - π During the installation, ensure you select the option "Use Git from the Windows Command Prompt".
- π‘ If you forget to add Git to your Windows PATH during installation, you can do it manually afterward. How to add Git to Windows PATH?
- Open the Start Menu and search for "Environment Variables".
- Select "Edit the system environment variables".
- In the System Properties window, click on the "Environment Variables" button.
- In the Environment Variables window, find the "Path" variable in the "System variables" section and select it.
- Click on the "Edit" button.
- In the Edit Environment Variable window, click on the "New" button and add the path to your Git
bin
andcmd
directories. For example:
C:\Program Files\Git\bin
C:\Program Files\Git\cmd
- Click "OK" to close all windows.
- Restart your Command Prompt to apply the changes.
You have now successfully added Git to your Windows PATH.
-
Open the Command Prompt. How to Open Command Prompt.
-
Navigate to the directory where you want to install the MasterCryptoFarmBot. How to Change Directory in Command Prompt.
-
Clone the repository:
git clone https://github.com/masterking32/MasterCryptoFarmBot
- Navigate to the cloned repository:
cd MasterCryptoFarmBot
- Create a new configuration file:
copy config.py.sample config.py
- Edit the configuration file:
notepad config.py
- Modify the configuration according to your needs:
- Run the MasterCryptoFarmBot:
start_windows.cmd
Alternatively, execute the start_windows.cmd
file from the File Explorer.
π Congratulations! You have successfully installed the MasterCryptoFarmBot on Windows.
Check the following links to learn more about the MasterCryptoFarmBot:
- π’ HowTo: Access the Control Panel
- π’ HowTo: Get a Free License & Add License Key
- π’ How to: Add New Accounts
- π’ HowTo: Install Bot Modules
To install the MasterCryptoFarmBot on Linux, follow these steps:
First, you need to install Git and Nano on your Linux system.
-
Debian/Ubuntu:
sudo apt update sudo apt install git nano -y
-
Red Hat/CentOS/AlmaLinux:
sudo yum update sudo yum install git nano -y
-
Clone the repository:
git clone https://github.com/masterking32/MasterCryptoFarmBot
-
Navigate to the cloned repository:
cd MasterCryptoFarmBot
-
Create a new configuration file:
cp config.py.sample config.py
-
Edit the configuration file:
nano config.py
-
Modify the configuration according to your needs:
-
To save the file, press
Ctrl + O
and then pressEnter
. To exit the editor, pressCtrl + X
.
We provide a script called start_linux.sh
to automate the installation of Python and the required packages. The installation guide will explain how to use this script. If your operating system is not supported by this script, you can manually install Python and the required packages.
This script functions as an installer, restarter, and updater for MasterCryptoFarmBot. It will install all necessary packages and start the bot. If you opt not to use this script, you will need to manually install the required packages and use an alternative method to restart the bot.
-
Run the script:
./start_linux.sh
After running the script for the first time, it will start installing Python and the required packages, then it will start the bot.
π Congratulations! You have successfully installed the MasterCryptoFarmBot on Linux.
Check the following links to learn more about the MasterCryptoFarmBot:
- π’ HowTo: Access the Control Panel
- π’ HowTo: Get a Free License & Add License Key
- π’ How to: Add New Accounts
- π’ HowTo: Install Bot Modules
If you have completed the installation and want to run the bot as a service, you can create a systemd service.
-
Create a new service file:
sudo nano /etc/systemd/system/mastercryptofarmbot.service
-
Add the following content:
[Unit] Description=MasterCryptoFarmBot Service Documentation=https://github.com/masterking32/MasterCryptoFarmBot After=network.target [Service] User=your_username WorkingDirectory=/path/to/MasterCryptoFarmBot ExecStart=/path/to/MasterCryptoFarmBot/start_linux.sh Restart=always RestartSec=3 KillSignal=SIGQUIT [Install] WantedBy=multi-user.target
- Replace
your_username
with your Linux username. - Replace
/path/to/MasterCryptoFarmBot
with the path to the MasterCryptoFarmBot directory. - You can get your current path using
pwd
command, by usingpwd
inside your MasterCryptoFarmBot directory. - Save the file by pressing
Ctrl + O
and then pressEnter
. Exit the editor by pressingCtrl + X
.
- Replace
-
Reload the systemd manager configuration:
- Ubuntu/Debian:
sudo systemctl daemon-reload
- Red Hat/CentOS/AlmaLinux:
sudo systemctl daemon-reload
-
Start the service:
- Ubuntu/Debian:
sudo systemctl start mastercryptofarmbot
- Red Hat/CentOS/AlmaLinux:
sudo systemctl start mastercryptofarmbot
-
Enable the service to start on boot:
- Ubuntu/Debian:
sudo systemctl enable mastercryptofarmbot
- Red Hat/CentOS/AlmaLinux:
sudo systemctl enable mastercryptofarmbot
-
Check the service status:
- Ubuntu/Debian:
sudo systemctl status mastercryptofarmbot
- Red Hat/CentOS/AlmaLinux:
sudo systemctl status mastercryptofarmbot
If you want to install the MasterCryptoFarmBot on your Android device, You need to install the Termux app on your Android device. Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required.
There is few ways to install Linux environment on Android, but the most popular way is to install Termux.
There are two ways to install Termux on your Android device:
-
Google Play Store:
-
F-Droid:
-
GitHub:
for more information, visit the Termux website.
-
Update the package list:
pkg update pkg upgrade -y
-
Install Git and Nano:
pkg install git nano -y
-
Clone the repository:
git clone https://github.com/masterking32/MasterCryptoFarmBot
-
Navigate to the cloned repository:
cd MasterCryptoFarmBot
-
Create a new configuration file:
cp config.py.sample config.py
-
Edit the configuration file:
nano config.py
-
Modify the configuration according to your needs:
- π‘ MasterCryptoFarmBot Configuration Guide
- To save the file, press
Ctrl + O
and then pressEnter
. To exit the editor, pressCtrl + X
.
We provide a script called start_android.sh
to automate the installation of Python and the required packages. The installation guide will explain how to use this script. If your operating system is not supported by this script, you can manually install Python and the required packages.
This script functions as an installer, restarter, and updater for MasterCryptoFarmBot. It will install all necessary packages and start the bot. If you opt not to use this script, you will need to manually install the required packages and use an alternative method to restart the bot.
-
Run the script:
./start_linux.sh
After running the script for the first time, it will start installing Python and the required packages, then it will start the bot.
π Congratulations! You have successfully installed the MasterCryptoFarmBot on Android.
Check the following links to learn more about the MasterCryptoFarmBot:
- π’ HowTo: Access the Control Panel
- π’ HowTo: Get a Free License & Add License Key
- π’ How to: Add New Accounts
- π’ HowTo: Install Bot Modules
To install the MasterCryptoFarmBot on macOS, follow these steps:
You can run project on macOS using the same steps as Linux. You can follow the Linux Installation Guide to install the MasterCryptoFarmBot on macOS.
β If you have a question, idea, or suggestion, You can create new discussion in the Discussions
π If you encounter a bug or issue, please create a new issue in the Issues section.
For more information and updates, join our π’ Telegram Channel or join our π¬ Telegram Group for discussion and support.