Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Installation

wfxey edited this page May 6, 2024 · 6 revisions

Installation

The installation is pretty simple. Technically you only need thesse things:

  • Python
  • Java
  • Python libaries (configparser, tkinter, reqeusts and psutil)

Python

Python is a versatile programming language commonly used for various purposes. Here's how you can install Python:

1. Download Python Installer:

  • Visit the official Python website at https://www.python.org/downloads/.
  • Choose the appropriate installer for your operating system (Windows, macOS, or Linux) and download it. 2. Install Python:
  • Once the installer is downloaded, run the downloaded file.
  • Follow the installation instructions provided by the installer.
  • Make sure to check the option to add Python to your system PATH during installation. This allows you to run Python from the command line. 3. Verify Installation:
  • After installation, open a command prompt or terminal.
  • Type python --version and press Enter.
  • If Python is installed correctly, you should see the version number displayed.

Java

Java is a widely used programming language, especially for building cross-platform applications. Here's how you can install Java:

1. Download Java Development Kit (JDK):

  • Visit the Oracle website at https://www.oracle.com/java/technologies/javase-jdk15-downloads.html.
  • Download the JDK installer appropriate for your operating system. 2. Install JDK:
  • Run the downloaded JDK installer.
  • Follow the installation instructions provided by the installer.
  • Make sure to set the JAVA_HOME environment variable to the JDK installation directory. 3. Verify Installation:
  • Open a command prompt or terminal.
  • Type java -version and press Enter.
  • If Java is installed correctly, you should see the version information displayed.

Python Libraries

Python libraries are essential for extending the functionality of Python. Here's how you can install some commonly used Python libraries:

1. Using pip:

  • Open a command prompt or terminal.
  • To install a library, type pip install library_name and press Enter.
  • Replace library_name with the name of the library you want to install. 2. Example:
  • To install the requests library, type pip install requests and press Enter.
  1. Verify Installation:
  • After installation, you can import the library in your Python code without any errors.

For more questions, ask us on our Discord server : https://discord.gg/t4mYGbErAn

Clone this wiki locally