Open TomHilk-learning opened 2 months ago
Hi @TomHilk-learning,
There's a compatibility issue with Python 3.12. Please install Python 3.11 from the official Python website: https://www.python.org/downloads/release/python-3110/
If you don't already have Microsoft C++ Build Tools installed, you'll need to install them to compile required packages like libewf-python and pytsk3.
Steps to Resolve:
Step 1: Download and Install Microsoft C++ Build Tools - https://visualstudio.microsoft.com/visual-cpp-build-tools/ During the installation, make sure to select the following workloads:
Step 2: Open PowerShell as Administrator
Step 3: Verify Python 3.11 is Being Used
python --version
Step 4: Navigate to Project Directory
cd path\to\project
Step 5: Create a Virtual Environment
python -m venv venv
Step 6: Change the Execution Policy
Set-ExecutionPolicy RemoteSigned
Step 7: Activate the Virtual Environment
.\venv\Scripts\Activate
Step 8: Install Project Dependencies
pip install -r requirements.txt
Thanks, will do.
Get Outlook for iOS
From: Radoslav Gadzhovski @.>Sent: Friday, September 20, 2024 1:05 PMTo: Gadzhovski/TRACE-Forensic-Toolkit @.>Cc: Tom Hilk @.>; Mention @.>Subject: Re: [Gadzhovski/TRACE-Forensic-Toolkit] Windows installation (Issue #5) Hi @TomHilk-learning, There's a compatibility issue with Python 3.12. Please install Python 3.11 from the official Python website: https://www.python.org/downloads/release/python-3110/ If you don't already have Microsoft C++ Build Tools installed, you'll need to install them to compile required packages like libewf-python and pytsk3. Steps to Resolve: Step 1: Download and Install Microsoft C++ Build Tools - https://visualstudio.microsoft.com/visual-cpp-build-tools/ During the installation, make sure to select the following workloads:
Desktop development with C++ C++ build tools
buildtools.png (view on web) Step 2: Open PowerShell as Administrator Step 3: Verify Python 3.11 is Being Used python --version Step 4: Navigate to Project Directory cd path\to\project Step 5: Create a Virtual Environment python -m venv venv Step 6: Change the Execution Policy
Set-ExecutionPolicy RemoteSigned When prompted, press Y and hit Enter.
Step 7: Activate the Virtual Environment .\venv\Scripts\Activate Step 8: Install Project Dependencies pip install -r requirements.txt
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: @.***> Get Outlook for iOS
Before I could run main.py successfully, I had to run "pip install PySide6". Don't know why I did see it listed in requirements.txt. Failed again saying "ModuleNotFound: No module named 'Registry'.
Thanks for making this application.