7👍
✅
This also happened to me, it’s because nodeenv is not installed in your virtual environment. The following solved it for me:
sudo pip uninstall nodeenv
# Source your virtual environment.
source /path/to/virtualenv
pip install nodeenv
nodeenv -p
1👍
This happened to me on Mac OSX Yosemite.
I had installed nodeenv as a user. The solution was to install it as root:
pip uninstall nodeenv
sudo pip install nodeenv
# Source the virtual environment or use workon for virtualenvwrapper
workon <virtualenv name>
nodeenv -p
- [Django]-Docker error using python 3.7: Generator expression must be parenthesized
- [Django]-Django-Debug-Toolbar not showing(disallowed MIME type)
- [Django]-Django 1.1 equivalent of the 'in' operator
- [Django]-Django for a simple web application
- [Django]-How to add custom styling to Forms created with Django CreateView
Source:stackexchange.com