You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I install the following requirement.txt, after I run python3 manage.py runserver I get an error:
will@ubuntu:~/rf-ids/mysite$ python3 manage.py runserver
/home/will/.local/lib/python3.6/site-packages/autobahn/wamp/auth.py:40: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography will remove support for Python 3.6.
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
/home/will/.local/lib/python3.6/site-packages/autobahn/wamp/auth.py:40: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography will remove support for Python 3.6.
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
Performing system checks...
System check identified no issues (0 silenced).
May 05, 2023 - 10:05:08
Django version 2.1.8, using settings 'mysite.settings'
Starting ASGI/Channels version 2.1.7 development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Unhandled exception in thread started by <function check_errors..wrapper at 0x7f97a0cd96a8>
Traceback (most recent call last):
File "/home/will/.local/lib/python3.6/site-packages/django/utils/autoreload.py", line 225, in wrapper
fn(*args, **kwargs)
File "/home/will/.local/lib/python3.6/site-packages/channels/management/commands/runserver.py", line 101, in inner_run
application=self.get_application(options),
File "/home/will/.local/lib/python3.6/site-packages/channels/management/commands/runserver.py", line 126, in get_application
return StaticFilesWrapper(get_default_application())
File "/home/will/.local/lib/python3.6/site-packages/channels/routing.py", line 33, in get_default_application
module = importlib.import_module(path)
File "/usr/lib/python3.6/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 955, in _find_and_load_unlocked
File "", line 665, in _load_unlocked
File "", line 678, in exec_module
File "", line 219, in _call_with_frames_removed
File "/home/will/rf-ids/mysite/mysite/routing.py", line 4, in
import app.routing
File "/home/will/rf-ids/mysite/app/routing.py", line 7, in
from . import ddos
File "/home/will/rf-ids/mysite/app/ddos.py", line 25, in
class GenerateConsumer(AsyncWebsocketConsumer):
File "/home/will/rf-ids/mysite/app/ddos.py", line 33, in GenerateConsumer
model = joblib.load(file_path)
File "/home/will/.local/lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle.py", line 598, in load
obj = _unpickle(fobj, filename, mmap_mode)
File "/home/will/.local/lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle.py", line 526, in _unpickle
obj = unpickler.load()
File "/usr/lib/python3.6/pickle.py", line 1050, in load
dispatchkey[0]
KeyError: 118
The text was updated successfully, but these errors were encountered:
Hi,
I install the following requirement.txt, after I run python3 manage.py runserver I get an error:
will@ubuntu:~/rf-ids/mysite$ python3 manage.py runserver
/home/will/.local/lib/python3.6/site-packages/autobahn/wamp/auth.py:40: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography will remove support for Python 3.6.
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
/home/will/.local/lib/python3.6/site-packages/autobahn/wamp/auth.py:40: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography. The next release of cryptography will remove support for Python 3.6.
from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
Performing system checks...
System check identified no issues (0 silenced).
May 05, 2023 - 10:05:08
Django version 2.1.8, using settings 'mysite.settings'
Starting ASGI/Channels version 2.1.7 development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Unhandled exception in thread started by <function check_errors..wrapper at 0x7f97a0cd96a8>
Traceback (most recent call last):
File "/home/will/.local/lib/python3.6/site-packages/django/utils/autoreload.py", line 225, in wrapper
fn(*args, **kwargs)
File "/home/will/.local/lib/python3.6/site-packages/channels/management/commands/runserver.py", line 101, in inner_run
application=self.get_application(options),
File "/home/will/.local/lib/python3.6/site-packages/channels/management/commands/runserver.py", line 126, in get_application
return StaticFilesWrapper(get_default_application())
File "/home/will/.local/lib/python3.6/site-packages/channels/routing.py", line 33, in get_default_application
module = importlib.import_module(path)
File "/usr/lib/python3.6/importlib/init.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 994, in _gcd_import
File "", line 971, in _find_and_load
File "", line 955, in _find_and_load_unlocked
File "", line 665, in _load_unlocked
File "", line 678, in exec_module
File "", line 219, in _call_with_frames_removed
File "/home/will/rf-ids/mysite/mysite/routing.py", line 4, in
import app.routing
File "/home/will/rf-ids/mysite/app/routing.py", line 7, in
from . import ddos
File "/home/will/rf-ids/mysite/app/ddos.py", line 25, in
class GenerateConsumer(AsyncWebsocketConsumer):
File "/home/will/rf-ids/mysite/app/ddos.py", line 33, in GenerateConsumer
model = joblib.load(file_path)
File "/home/will/.local/lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle.py", line 598, in load
obj = _unpickle(fobj, filename, mmap_mode)
File "/home/will/.local/lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle.py", line 526, in _unpickle
obj = unpickler.load()
File "/usr/lib/python3.6/pickle.py", line 1050, in load
dispatchkey[0]
KeyError: 118
The text was updated successfully, but these errors were encountered: