Closed markfinger closed 9 years ago
Re: markfinger/django-webpack#1
Fixed.
One caveat to be aware of is that one of django-webpack's dependencies requires Python 2.x. NPM will still complete, and the system appears to function as expected, but NPM will spew out a bunch of errors during the installation process. This mostly relates to the node-gyp package.
You can fix this by adding a path to a Python 2 interpreter to your settings...
DJANGO_NODE = {
'NPM_INSTALL_PATH_TO_PYTHON': '/path/to/python2',
}
Re: markfinger/django-node#3