nythepegasus / SideJITServer

A JIT enabler for iOS 17 with a Windows/macOS computer on the same WiFi!
GNU General Public License v3.0
270 stars 18 forks source link

Missing module even though I installed the module #23

Closed 0hStormy closed 2 months ago

0hStormy commented 2 months ago

image

polymo1 commented 2 months ago

Run pip3 install -r requirements.txt if you have that file

Wesley Bryie

@. @.

https://wesbryie.com/


From: Stormy @.> Sent: Wednesday, April 24, 2024 9:54:51 PM To: nythepegasus/SideJITServer @.> Cc: Subscribed @.***> Subject: [nythepegasus/SideJITServer] Missing module even though I installed the module (Issue #23)

image.png (view on web)https://github.com/nythepegasus/SideJITServer/assets/80485413/504387a7-29f5-46e5-ae39-0a8a416f96e3

— Reply to this email directly, view it on GitHubhttps://github.com/nythepegasus/SideJITServer/issues/23, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AWGTRU6H4XXQWCQAQJWUDALY7BO6XAVCNFSM6AAAAABGX6UDKKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGI3DENBYGE2TIMQ. You are receiving this because you are subscribed to this thread.Message ID: @.***>

0hStormy commented 2 months ago

Did that and I get the same module error. (I'm on Fedora 40 if you need more info)

takov751 commented 2 months ago

@0hStormy you have installed the modules as your user so your root does not have access to it. to make it easier and bit less messy i would recommend using venv.

# create virtualenv
python3 -m venv $HOME/anywhere/.venv
# enter into the virtual environment and install whatever you would like
source $HOME/anywhere/.venv/bin/activate
(.venv) $ pip3 install -r requirements.txt

# run command as root with sudo
sudo $HOME/anywhere/.venv/bin/python3 -m SideJITServer --help

I am working on a docker solution as well, as the one in this repository does not work as it should be.

0hStormy commented 2 months ago

Got it to work, I just had to use pip with sudo while in venv