-
-
Notifications
You must be signed in to change notification settings - Fork 210
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
"ImportError: No module named fields" when install #227
Comments
I have an older setup which was previously installed fine; just did a quick pip- check; the old setup has django-tagging (0.3.6) but the new - broken one - has django-tagging (0.4)... https://pypi.python.org/pypi/django-tagging - django-tagging 0.4 requires newer django and we still have 1.5.5 on the setup... |
We just ran into the same issue. CentOS 6.6, cookbook version 1.0.2. |
Hi, Yep same issue using Ubuntu 14.04, cookbook version 1.0.2
|
I got around this temporarily reopening the resource in the recipe for my wrapper cookbook (simplified below): r = resources(python_pip: 'django-tagging')
r.action :install
r.version "0.3.6" and it's able to complete the syncdb operation. Hopefully someone finds it a helpful starting point until the issue is resolved upstream. |
Temporary solution in Chef,
Or manually,
|
This is an issue here as well, on Ubuntu 14.04. @bobhlo: The chef solution above didn't work for me but the manual one did. Thanks! |
@rambler just put before
|
@rambler, may need to remove newer version before applying old one
|
+1 - any chance of this being fixed? |
Yes. I have also encountered and verified the suggested solution. We will try and get this fixed and release soon. |
Friendly reminder that over 4 months have passed. |
@bobhlo - "pip install django-tagging==0.3.6" Thank you for the manual fix. It worked for me. |
Marking stale due to inactivity. Remove stale label or comment or this will be closed in 7 days. Alternatively drop by the #sous-chefs channel on the Chef Community Slack and we'll be happy to help! Thanks, Sous-Chefs. |
Hi,
suddenly the cookbook started giving this kind of error when running:
I tried to run the command by hand and I can get:
/opt/graphite/webapp/graphite# python manage.py syncdb --noinput
ImportError: No module named fields
Cookbook version is 1.0.2 and OS is Ubuntu 14.04.2 LTS.
Anyone else experiencing this?
The text was updated successfully, but these errors were encountered: