-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows installation #5
Comments
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/
Step 2: Open PowerShell as Administrator Step 3: Verify Python 3.11 is Being Used Step 4: Navigate to Project Directory Step 5: Create a Virtual Environment Step 6: Change the Execution Policy
Step 7: Activate the Virtual Environment Step 8: Install Project Dependencies |
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.
The text was updated successfully, but these errors were encountered: