-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when running sudo python3. py (ModuleNotFoundError) #23
Comments
Hi, i'm facing the same issue. did you found a solutions ? |
+1 |
Hi, I also ran into this issue. Just make sure you use the required Python version
So like I said, I also ran into this issue, the Python version that I had installed was something around python3 --version In my case, it is now python3.11 --version If you get an answer to that, then you are also good to go. If not, just go to https://www.python.org/downloads/macos/ and download any Once you did that you can check again with: python3 --version or python3.11 --version Because python3.11 -m venv ./.venv
source ./.venv/bin/activate pip3.11 install -r requirements.txt sudo python3.11 main.py This will make sure the commands are using the correct versions. Also important to have your device in developer mode and plugged in when running the last command. Enjoy |
@Siyuanw please include info above in the |
Hi, i've managed to run pip3 install -r requirements.txt, waited around 7 mins and got notified that program was installed. I did see ERROR: Could not build wheels for pytun-pmd3, which is required to install pyproject.toml-based projects. However, upon running sudo python3. py I get :
Traceback (most recent call last):
File "/Users/dinoshawn/Desktop/kinesis-main/main.py", line 1, in
from cryptography.hazmat.primitives.asymmetric import rsa
ModuleNotFoundError: No module named 'cryptography'
Anyone can help with this? TIA
steps took:
The text was updated successfully, but these errors were encountered: