You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your work on this wonderful tool. I just discovered it and it has made my life easier in countless ways! (I can finally have Node.js and Django code side-by-side for web projects without pulling my hair out.)
My shop standardizes on RHEL 6.4, which still uses Python 2.6 (we're moving to Python 2.7 as soon as RHEL 7 is available). Python 2.6 still uses a Tuple for sys.version_info, which causes a failure at line 414 of nodeenv.py. This can be fixed by using a getattr and supplying a default. See the code below (line 414):
Thank you for your work on this wonderful tool. I just discovered it and it has made my life easier in countless ways! (I can finally have Node.js and Django code side-by-side for web projects without pulling my hair out.)
My shop standardizes on RHEL 6.4, which still uses Python 2.6 (we're moving to Python 2.7 as soon as RHEL 7 is available). Python 2.6 still uses a Tuple for sys.version_info, which causes a failure at line 414 of nodeenv.py. This can be fixed by using a getattr and supplying a default. See the code below (line 414):
The text was updated successfully, but these errors were encountered: