mirror of
https://github.com/mrh0wl/Cloudmare.git
synced 2026-04-26 02:15:58 +03:00
[GH-ISSUE #60] I cant run the script #48
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Cloudmare#48
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Bloom080 on GitHub (Feb 16, 2025).
Original GitHub issue: https://github.com/mrh0wl/Cloudmare/issues/60
When i try and run the script because when going to the folder by typing "python Cloudmare.py -h or python Cloudmare.py -hh" it says that i need to install a module manually... And i don't know how to install it ;(
@DevVaibhav07 commented on GitHub (Mar 5, 2025):
Hey @Bloom080
Even I faced the same issue.
Debugging and Fixing Process of Cloudmare
During the debugging and fixing process of Cloudmare, several issues were identified and resolved:
1.
thirdparty.urllib3.packages.six.movesNot FoundIssue:
Cloudmare was trying to import
thirdparty.urllib3.packages.six.moves, which does not exist in modern Python libraries.urllib3andsixare standalone packages and do not require athirdpartyreference.Fix Applied:
from thirdparty.urllib3.packages.six.moves import ...withfrom six.moves import ...urllib3andsixwere properly installed:2.
thirdparty.coloramaNot FoundIssue:
Cloudmare attempted to import
thirdparty.colorama, which is incorrect.coloramais a standard package and should be imported directly.Fix Applied:
from thirdparty.colorama import Fore, Stylewithfrom colorama import Fore, Stylecoloramamanually:3. Generic
thirdpartyModule Not FoundIssue:
Cloudmare was still trying to load a non-existent
thirdpartypackage.This caused repeated warnings and failures.
Fix Applied:
thirdpartyacross the Cloudmare directory.thirdpartydirectory:4.
IndentationErrorinsublist3r.pyIssue:
After removing
thirdparty, an emptytryblock remained, causing anIndentationError.Fix Applied:
sublist3r.pyand ensured thetryblock was not empty:Final Steps & Verification
After applying all fixes:
Cloudmare should now function correctly. Let me know if you encounter further issues.
@sergeevabc commented on GitHub (Apr 16, 2025):
Guys, if you could get this script to work, could you be so kind to find the real address for the following link? https://cdn1.waterfox.net/waterfox/releases/6.5.6/WINNT_x86_64/Waterfox%20Setup%206.5.6.exe
@4n4l1st-ch4rl3s commented on GitHub (Jul 24, 2025):
Check my PR for the fix