mauricelambert / SpyWare

This package implements a complete SpyWare.
GNU General Public License v3.0
67 stars 18 forks source link

No module named 'AudioLogger' #3

Closed CamoCatX closed 1 year ago

CamoCatX commented 1 year ago

I copied and pasted this script:

from SpyWare import spyware spyware()

This, according to the readme, should of started SpyWare. But it did not. Instead, I received this error:

Traceback (most recent call last): File "c:/Users/cdsdc/Desktop/Coding/PWN/SpyWare", line 1, in from SpyWare import spyware File "C:\Users\cdsdc\AppData\Roaming\Python\Python38\site-packages\SpyWare__init.py", line 67, in from . import AudioLogger File "C:\Users\cdsdc\AppData\Roaming\Python\Python38\site-packages\SpyWare\AudioLogger\init__.py", line 64, in from AudioLogger import ( ModuleNotFoundError: No module named 'AudioLogger'

When I did what I usually do when receiving this error, (python -m pip install AudioLogger) it simply said:


Defaulting to user installation because normal site-packages is not writeable ERROR: Could not find a version that satisfies the requirement AudioLogger (from versions: none) ERROR: No matching distribution found for AudioLogger

This means that I do not have the matching python version. (I was using 3.8).

How would I go about fixing this?

CamoCatX commented 1 year ago

I figured this out on my own.