-
Notifications
You must be signed in to change notification settings - Fork 740
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
[Discussion]: Workaround for error on 'time' modules #10
Comments
Thanks for this workaround. I had the same issue and this worked for me. |
Worked here too. Thanks |
This will work sudo pip3 uninstall PyCrypto |
Can confirm the ^above^ works too. Thanks @sherlocksecurity |
The other workaround for this is to use python 3.7! |
My preferred option is to use an update Python3 version along with pycryptodome module instead of pycrypto pip3 uninstall pycrypto |
Another thread for the discussion: #17 |
Script may fail with following error module 'time' has no attribute 'clock'
Lazy workaround is to open the script and add the following just underneath the imports
time.clock = time.time
Not sure if this was only my experience, but wanted to document the quick fix in case any one else struggles
The text was updated successfully, but these errors were encountered: