node-virtualenv
node-virtualenv copied to clipboard
install and use Python dependencies in node with virtualenv
This is a fix for https://github.com/pypa/virtualenv/issues/596 Simply not calling the pip executable directly, invoking `python -m pip` instead,
Adds showHidden = true to getPackageReleases call and converts version numbers to semver fromat before finding the match. Now it should be possible to include the following in package.json and...
I couldn't get this working due to: ``` python: can't open file 'virtualenv.py': [Errno 2] No such file or directory ``` Inspecting the source reveals this is now located inside...
see https://github.com/pypa/virtualenv/issues/1240
Should fix mjpizz/node-virtualenv#4
Has anyone had success building this project for Electron? I got it working quite easily in a development environment, but no success when packaging for distribution. I suspect that packaging...
Hi, I'm trying to follow your example but can't get the child process to spawn correctly. Here's my code: `var virtualenv = require("virtualenv"); var packagePath = require.resolve(__dirname + '/../../package.json'); var...
When installing the current version of node-virtualenv in my repository, I frequently see: npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue...
Hi, is it possible for me to use this package based a a virtual environment already set up? If so, how should I configure it?
For example, if you add new flags in your package.json like: ``` js "virtualenv": { "flags": ["--python=Python2.7"] } ``` For convenience, the virtualenv should be rebuilt so that it has...