We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nodeenv -n system
0
$ nodeenv -n system nenv2 /bin/sh: 1: curl: not found * Install npm.js (latest) ... done. (venv)asottile@asottile-VirtualBox:/tmp/foo$ echo $? 0
Interestingly it returns a nonzero code without -n system:
$ nodeenv nenv3 /bin/sh: 1: curl: not found * Install node.js (-RC1) Traceback (most recent call last): File "/tmp/foo/venv/bin/nodeenv", line 9, in <module> load_entry_point('nodeenv==0.8.0', 'console_scripts', 'nodeenv')() File "/tmp/foo/venv/local/lib/python2.7/site-packages/nodeenv.py", line 596, in main create_environment(env_dir, opt) File "/tmp/foo/venv/local/lib/python2.7/site-packages/nodeenv.py", line 516, in create_environment install_node(env_dir, src_dir, opt) File "/tmp/foo/venv/local/lib/python2.7/site-packages/nodeenv.py", line 378, in install_node download_node(node_url, src_dir, env_dir, opt) File "/tmp/foo/venv/local/lib/python2.7/site-packages/nodeenv.py", line 347, in download_node callit(cmd, opt.verbose, True, env_dir) File "/tmp/foo/venv/local/lib/python2.7/site-packages/nodeenv.py", line 309, in callit % (cmd_desc, proc.returncode)) OSError: Command curl --silent -L http://nodejs.org/dist/node-v-RC1.tar.gz | tar xzf - -C /tmp/foo/nenv3/src failed with error code 2 (venv)asottile@asottile-VirtualBox:/tmp/foo$ echo $? 1
Yes I realize I'm probably the only person who has a linux installation that has yet to install curl. To be fair this is a relatively new install :D
The text was updated successfully, but these errors were encountered:
I believe #110 solves this?
Sorry, something went wrong.
No branches or pull requests
Interestingly it returns a nonzero code without -n system:
Yes I realize I'm probably the only person who has a linux installation that has yet to install curl. To be fair this is a relatively new install :D
The text was updated successfully, but these errors were encountered: