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

Setup for Windows

Coşkun Deniz edited this page Oct 28, 2023 · 4 revisions

Setup for Windows

  • If you don't have Python installed on your system

    1. Go to the official Python download page for Windows and download the binary.
    2. Double click on the downloaded file and install Python for all users, and ensure that Python is added to your path. Python Installation
  • Open a command prompt and run the following commands.

    1. python -m venv env
    2. .\env\Scripts\activate
    3. python -m pip install -r requirements.txt

  • If python command gives error on Windows, try with py.

  • During the third command, if you get the following error

    Build error

    1. Go to https://visualstudio.microsoft.com/visual-cpp-build-tools/ and download build tools.

      Build tools download

    2. Run the downloaded exe file.

    3. Only select the option with C++ in the upper left area and install.

      Build tools installation

    4. After the installation is completed, run the third command(python -m pip install -r requirements.txt) again.

Clone this wiki locally