Skip to content
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

Remove gunicorn.six import, move to just six #95

Open
alibama opened this issue Dec 18, 2019 · 2 comments
Open

Remove gunicorn.six import, move to just six #95

alibama opened this issue Dec 18, 2019 · 2 comments
Labels
backlog Issues that haven't been categorized or are not yet ready for work bug Concrete, reproducible bugs

Comments

@alibama
Copy link

alibama commented 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?

@timkpaine timkpaine changed the title ModuleNotFoundError: No module named 'gunicorn.six' Remove gunicorn.six import, move to just six Dec 18, 2019
@timkpaine
Copy link
Member

you can install an older gunicorn for now to get around this
benoitc/gunicorn#2083

@timkpaine timkpaine added backlog Issues that haven't been categorized or are not yet ready for work bug Concrete, reproducible bugs labels Dec 18, 2019
@alibama
Copy link
Author

alibama commented Dec 18, 2019

thanks man - great call, should have dug around more to find that
for those on ubuntu

pip install gunicorn==19
and then
python -m paperboy
worked fine

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backlog Issues that haven't been categorized or are not yet ready for work bug Concrete, reproducible bugs
Development

No branches or pull requests

2 participants