Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This Setup work with : openIMIS v 24.04

...

Prerequisites:

  1. Install SQL Server: Follow the installation instructions for SQL Server.

  2. Configure SQL Server:

    • Launch the SQL Server Configuration Manager.

    • Navigate to SQL Server Network Configuration → Protocols for SQLEXPRESS (or your SQL Server instance name) → Enable Named Pipes and TCP/IP.

    • Under SQL Server Services, right-click on your SQL Server instance name and select Restart.

  3. Install Python:

    • Ensure compatibility with openIMIS, preferably Python Version 3.10 or 3.11, downloadable from Python's official website.

    • Add Environment Variables:

      • <YourUsername>\\AppData\\Local\\Programs\\Python\\Python<version>

      • <YourUsername>\\AppData\\Local\\Programs\\Python\\Python<version>\\Scripts

    • Confirm Python installation by running "python --version"; you should see the Python version displayed.

  4. Virtual Environment Setup:

    • Install virtualenv by running

      Code Block
      pip install virtualenv

...