fit-project / fit

FIT is a Python3 application for forensic acquisition of contents like web pages, emails, social media, etc. directly from the internet.
GNU General Public License v3.0
67 stars 9 forks source link

Poetry hangs on installing yt-dlp #125

Closed ryd3v closed 3 months ago

ryd3v commented 3 months ago

process so far,

git clone https://github.com/fit-project/fit.git
cd fit
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools
pip install poetry

Screenshot 2024-08-19 195149

ryd3v commented 3 months ago

process so far,

git clone https://github.com/fit-project/fit.git
cd fit
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools
pip install poetry

Screenshot 2024-08-19 195149

I got it to run on Linux with the following

git clone https://github.com/fit-project/fit.git
cd fit
python3 -m venv venv
source venv/bin/activate
pip install -U pip setuptools
pip install poetry
poetry export -f requirements.txt --output requirements.txt
pip install -r requirements.txt
python3 fit.py