_let me start by saying I know nothing about python or coding
I have been doing my best to go through the steps and I am trying to run the "startofd.py" file but when I double click on it i just get a flicking window, So I attempted to run it in Command Prompt and it did work, which then brought me to the following information
C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master>python start_ofd.py Traceback (most recent call last): File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\start_ofd.py", line 9, in <module> from helpers.main_helper import OptionsFormat File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\helpers\main_helper.py", line 21, in <module> import classes.make_settings as make_settings File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\classes\make_settings.py", line 6, in <module> from yarl import URL ModuleNotFoundError: No module named 'yarl'
I then looked up on how to fix this particular issue of "ModuleNotFoundError: No module named 'yarl'" and then opened up powershell and ran the following command
[notice] A new release of pip available: 22.3 -> 22.3.1
[notice] To update, run: python.exe -m pip install --upgrade pip`
_I did perform the upgrade, and ran the code python startofd.py again and it just keeps coming back with different file errors and this is currently where i'm at
C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master>python start_ofd.py Traceback (most recent call last): File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\start_ofd.py", line 9, in <module> from helpers.main_helper import OptionsFormat File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\helpers\main_helper.py", line 35, in <module> from apis.fansly import fansly as Fansly File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\fansly.py", line 3, in <module> from apis.api_streamliner import StreamlinedAPI File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\api_streamliner.py", line 6, in <module> import apis.fansly.classes as fansly_classes File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\classes\__init__.py", line 1, in <module> from apis.fansly.classes import auth_model, extras, user_model File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\classes\auth_model.py", line 26, in <module> from dateutil.relativedelta import relativedelta ModuleNotFoundError: No module named 'dateutil'
I have no idea where to go from now, Be in mind I am using python version 3.10.1 as the latest version was not working with the latest 7.4.1 release on here. any help would be greatly appreciated. Thank you in advanced
_let me start by saying I know nothing about python or coding
I have been doing my best to go through the steps and I am trying to run the "startofd.py" file but when I double click on it i just get a flicking window, So I attempted to run it in Command Prompt and it did work, which then brought me to the following information
C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master>python start_ofd.py Traceback (most recent call last): File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\start_ofd.py", line 9, in <module> from helpers.main_helper import OptionsFormat File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\helpers\main_helper.py", line 21, in <module> import classes.make_settings as make_settings File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\classes\make_settings.py", line 6, in <module> from yarl import URL ModuleNotFoundError: No module named 'yarl'
I then looked up on how to fix this particular issue of "ModuleNotFoundError: No module named 'yarl'" and then opened up powershell and ran the following command
`PS C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master> python -m pip install yarl Collecting yarl Downloading yarl-1.8.2-cp310-cp310-win_amd64.whl (56 kB) ---------------------------------------- 56.1/56.1 kB 3.1 MB/s eta 0:00:00 Requirement already satisfied: idna>=2.0 in c:\users\spudl\appdata\local\programs\python\python310\lib\site-packages (from yarl) (3.4) Collecting multidict>=4.0 Downloading multidict-6.0.3-cp310-cp310-win_amd64.whl (28 kB) Installing collected packages: multidict, yarl Successfully installed multidict-6.0.3 yarl-1.8.2
[notice] A new release of pip available: 22.3 -> 22.3.1 [notice] To update, run: python.exe -m pip install --upgrade pip`
_I did perform the upgrade, and ran the code python startofd.py again and it just keeps coming back with different file errors and this is currently where i'm at
C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master>python start_ofd.py Traceback (most recent call last): File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\start_ofd.py", line 9, in <module> from helpers.main_helper import OptionsFormat File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\helpers\main_helper.py", line 35, in <module> from apis.fansly import fansly as Fansly File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\fansly.py", line 3, in <module> from apis.api_streamliner import StreamlinedAPI File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\api_streamliner.py", line 6, in <module> import apis.fansly.classes as fansly_classes File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\classes\__init__.py", line 1, in <module> from apis.fansly.classes import auth_model, extras, user_model File "C:\Users\spudl\Downloads\OnlyFans-master\OnlyFans-master\apis\fansly\classes\auth_model.py", line 26, in <module> from dateutil.relativedelta import relativedelta ModuleNotFoundError: No module named 'dateutil'
I have no idea where to go from now, Be in mind I am using python version 3.10.1 as the latest version was not working with the latest 7.4.1 release on here. any help would be greatly appreciated. Thank you in advanced