0
votes
0answers
73 views

Python not found as dependency during ' npm jsbin' installation. What is missing?

This question was created from issues I've encountered while trying to install jsbin locally. JGallardo has asked me to create a question from it, because originally I've posted comments in the ...
0
votes
0answers
44 views

Why is node.js v0.10.20 updated via npm using much more CPU than v0.8.25 build localy?

We have been running simple http server on old nodejs 0.4.4 with cluster (16 cores) and 3rd-eden memcached as notification service with pretty high traffic. Finaly we decided to upgrade to latest ...
0
votes
1answer
163 views

trying to install opencv from npm on windows

I am trying to install open-cv for nodeJs on windows 8 I downloaded NodeJs, installed it Installed python for windows 32 bit OpenCV 2.3.1 SET PYTHON=C:\Python33 SET %PATH%;C:\PYTHON33 downloaded ...
1
vote
1answer
81 views

Python equivalent of node.js's npm link to use local development versions of requirements?

In Node.js, I'm used to using npm link to get a project to use a custom version of a dependency. From the Node documentation: First, npm link in a package folder will create a globally-installed ...
0
votes
0answers
24 views

data to REST api abstraction solutions like parse_as_rest() in web2py?

I'm talking about the ability to turn your database schema (complete with relational tables) into REST api. http://web2py.com/books/default/chapter/29/10#parse_as_rest-(experimental) Are there any ...
1
vote
1answer
227 views

Warning: 'as' will become a reserved keyword in Python 2.6

while running npm install (e.g. https://github.com/donpark/html2jade), I run into this error: /usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py:852: Warning: 'as' will ...
1
vote
0answers
110 views

How to use pip install python packages locally like npm does

Say I have a project named Foo, and and want to install requests package locally for this project. What I am expecting is some structure similar to this: Foo/ |-main.py |-requirements.txt |-README.md ...
0
votes
1answer
384 views

Error: EMFILE, too many connections

On NPM install, I get: npm http 304 https://registry.npmjs.org/grunt-contrib-uglify npm http 304 https://registry.npmjs.org/grunt-contrib-qunit npm ERR! TypeError: Bad argument npm ERR! at ...
6
votes
2answers
6k views

Running Python on Windows for Node.js dependencies

I am getting into a Node.js codebase which requires that I download a few dependencies via NPM, namely jQuery. In attempting to run npm install jquery, I keep getting this error: Your environment ...
0
votes
0answers
133 views

How to install npm package from python script?

How to install npm package from python script? When I use subprocess.Popen(["node", "app.js"]) it is OK. When I use subprocess.Popen(["npm", "install", "open"]) it is throwing an error. Sorry, but ...
0
votes
1answer
672 views

npm install bcrypt

Locally, when I do: npm install bcrypt I get: ImportError no module named site But when I deploy to heroku, it installs just fine. What might be my issue? I tried a few configurations, I have ...
0
votes
1answer
1k views

Install contextify on Windows 7 Error: `gyp` failed with exit code: 2

This is what I got when running npm install contextify npm http GET https://registry.npmjs.org/contextify npm http 304 https://registry.npmjs.org/contextify npm http GET ...
2
votes
3answers
662 views

Python equivalent of npm or rubygems

I've been looking around for a package manager that can be used with python. I want to list project dependencies in a file. For example ruby uses Gemfile where you can use bundle install. How can I ...
0
votes
1answer
190 views

how to use subproces.Popen correctly on windows xp?- shows windowserror 2 while accessing npm

I am trying to run an existing python code, and having issues with it. This program required npm program installed and which is installed at C:\Program Files\nodejs\npm in my computer. When I run the ...
3
votes
1answer
5k views

How do I get node-waf to install?

First, props to whoever did node.js. I've been using it for less than a day and I'm already thinking about using it for stuff I use Python for now. In fact, whoever did node.js should think about ...