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
Describe the bug
working in ubuntu 18.04
after running the first three commands
npm install
i get this warning...
npm WARN [email protected] requires a peer of jest@>=22 <24 but none is installed. You must install peer dependencies yourself.
npm run build - runs fine
pip install -e . - says it installs successfully
i ran "python -m paperboy"
and got this error
Traceback (most recent call last):
File "/root/anaconda3/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "/root/anaconda3/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/ubuntu/paperboy-master/paperboy/main.py", line 4, in
main()
File "/home/ubuntu/paperboy-master/paperboy/server/init.py", line 7, in main
from ..config.application import Paperboy
File "/home/ubuntu/paperboy-master/paperboy/config/application.py", line 15, in
from ..server.deploy import FalconDeploy
File "/home/ubuntu/paperboy-master/paperboy/server/deploy.py", line 7, in
from .deploy_nix import FalconGunicorn as FalconDeploy # noqa: F401
File "/home/ubuntu/paperboy-master/paperboy/server/deploy_nix.py", line 2, in
from gunicorn.six import iteritems
ModuleNotFoundError: No module named 'gunicorn.six'
any ideas?
The text was updated successfully, but these errors were encountered:
timkpaine
changed the title
ModuleNotFoundError: No module named 'gunicorn.six'
Remove gunicorn.six import, move to just six
Dec 18, 2019
Describe the bug
working in ubuntu 18.04
after running the first three commands
npm install
i get this warning...
npm WARN [email protected] requires a peer of jest@>=22 <24 but none is installed. You must install peer dependencies yourself.
npm run build - runs fine
pip install -e . - says it installs successfully
i ran "python -m paperboy"
and got this error
Traceback (most recent call last):
File "/root/anaconda3/lib/python3.7/runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "/root/anaconda3/lib/python3.7/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/ubuntu/paperboy-master/paperboy/main.py", line 4, in
main()
File "/home/ubuntu/paperboy-master/paperboy/server/init.py", line 7, in main
from ..config.application import Paperboy
File "/home/ubuntu/paperboy-master/paperboy/config/application.py", line 15, in
from ..server.deploy import FalconDeploy
File "/home/ubuntu/paperboy-master/paperboy/server/deploy.py", line 7, in
from .deploy_nix import FalconGunicorn as FalconDeploy # noqa: F401
File "/home/ubuntu/paperboy-master/paperboy/server/deploy_nix.py", line 2, in
from gunicorn.six import iteritems
ModuleNotFoundError: No module named 'gunicorn.six'
any ideas?
The text was updated successfully, but these errors were encountered: