MCPcopy Index your code
hub / github.com/ekalinin/nodeenv / install_node

Function install_node

nodeenv.py:757–767  ·  view source on GitHub ↗

Download source code for node.js, unpack it and install it in virtual environment.

(env_dir, src_dir, args)

Source from the content-addressed store, hash-verified

755
756
757def install_node(env_dir, src_dir, args):
758 """
759 Download source code for node.js, unpack it
760 and install it in virtual environment.
761 """
762 try:
763 install_node_wrapped(env_dir, src_dir, args)
764 except BaseException:
765 # this restores the newline suppressed by continued=True
766 logger.info('')
767 raise
768
769
770def install_node_wrapped(env_dir, src_dir, args):

Callers 1

create_environmentFunction · 0.85

Calls 1

install_node_wrappedFunction · 0.85

Tested by

no test coverage detected