nvbn / django-bower

Easy way to use bower with your django project
https://django-bower.readthedocs.io/
518 stars 74 forks source link

OSError 193 when trying to install #16

Open pendraggon87 opened 10 years ago

pendraggon87 commented 10 years ago

I receive an error %1 is not a valid Win32 application when running bower_install.

Here is a sample of my settings:

STATIC_URL = '/static/' STATICFILES_FINDERS = ( "django.contrib.staticfiles.finders.FileSystemFinder", "django.contrib.staticfiles.finders.AppDirectoriesFinder", "djangobower.finders.BowerFinder",)

Bower

BOWER_COMPONENTS_ROOT= '/components/' BOWER_PATH = 'c:/Users/Aaron Katz/AppData/Roaming/npm/bower' BOWER_INSTALLED_APPS = ( 'jquery' )

Any thoughts as to why I am getting that error?

jonmagal commented 7 years ago

I'm with the same problem, @pendraggon87 have you found a solution?

tgrandje commented 2 years ago

Just hit the same problem. It seems using subprocess with shell=True resolves the problem. I've set a pull requests.