Hi,
some of our people prefer using virtualenv without activating environment with activate script — by adjusting PATH env var or by referencing executables directly in venv's bin/.
I think this is worth supporting and currently I do this via putting the following script into bin/ during creating nodeenv:
#!/bin/sh
export NODE_PATH=/path/to/nodeenv/lib/node_modules
export NPM_CONFIG_PREFIX=/path/to/nodeenv
exec /path/to/system/installed/node $*
What do you think of this?
Hi,
some of our people prefer using virtualenv without activating environment with
activatescript — by adjustingPATHenv var or by referencing executables directly in venv'sbin/.I think this is worth supporting and currently I do this via putting the following script into
bin/during creating nodeenv:What do you think of this?