Advertisement
Guest User

Untitled

a guest
Jul 9th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. jschreck@jormungandr:~/jor-test$ curl https://sh.rustup.rs -sSf | sh
  2. info: downloading installer
  3.  
  4. Welcome to Rust!
  5.  
  6. This will download and install the official compiler for the Rust programming
  7. language, and its package manager, Cargo.
  8.  
  9. It will add the cargo, rustc, rustup and other commands to Cargo's bin
  10. directory, located at:
  11.  
  12. /home/jschreck/.cargo/bin
  13.  
  14. This path will then be added to your PATH environment variable by modifying the
  15. profile file located at:
  16.  
  17. /home/jschreck/.profile
  18.  
  19. You can uninstall at any time with rustup self uninstall and these changes will
  20. be reverted.
  21.  
  22. Current installation options:
  23.  
  24. default host triple: x86_64-unknown-linux-gnu
  25. default toolchain: stable
  26. modify PATH variable: yes
  27.  
  28. 1) Proceed with installation (default)
  29. 2) Customize installation
  30. 3) Cancel installation
  31. >1
  32.  
  33. info: updating existing rustup installation
  34.  
  35.  
  36. Rust is installed now. Great!
  37.  
  38. To get started you need Cargo's bin directory ($HOME/.cargo/bin) in your PATH
  39. environment variable. Next time you log in this will be done automatically.
  40.  
  41. To configure your current shell run source $HOME/.cargo/env
  42.  
  43. jschreck@jormungandr:~/jor-test$ source $HOME/.cargo/env
  44. jschreck@jormungandr:~/jor-test$ rustup install stable
  45. info: syncing channel updates for 'stable-x86_64-unknown-linux-gnu'
  46.  
  47. stable-x86_64-unknown-linux-gnu unchanged - rustc 1.36.0 (a53f9df32 2019-07-03)
  48.  
  49. info: checking for self-updates
  50. jschreck@jormungandr:~/jor-test$ rustup default stable
  51. info: using existing install for 'stable-x86_64-unknown-linux-gnu'
  52. info: default toolchain set to 'stable-x86_64-unknown-linux-gnu'
  53.  
  54. stable-x86_64-unknown-linux-gnu unchanged - rustc 1.36.0 (a53f9df32 2019-07-03)
  55.  
  56. jschreck@jormungandr:~/jor-test/jormungandr$ cargo install --path jormungandr
  57. Installing jormungandr v0.2.4 (/home/jschreck/jor-test/jormungandr/jormungandr)
  58. Updating crates.io index
  59. Updating git repository `https://github.com/slog-rs/syslog`
  60. Updating git repository `https://github.com/tower-rs/tower-hyper`
  61. Updating git repository `https://github.com/tower-rs/tower-http`
  62. error: failed to compile `jormungandr v0.2.4 (/home/jschreck/jor-test/jormungandr/jormungandr)`, intermediate artifacts can be found at `/home/jschreck/jor-test/jormungandr/target`
  63.  
  64. Caused by:
  65. failed to open: /home/jschreck/jor-test/jormungandr/target/release/.cargo-lock
  66.  
  67. Caused by:
  68. Permission denied (os error 13)
  69. jschreck@jormungandr:~/jor-test/jormungandr$ cargo install --path jcli
  70. Installing jcli v0.2.4 (/home/jschreck/jor-test/jormungandr/jcli)
  71. Updating crates.io index
  72. Updating git repository `https://github.com/slog-rs/syslog`
  73. Updating git repository `https://github.com/tower-rs/tower-hyper`
  74. Updating git repository `https://github.com/tower-rs/tower-http`
  75. error: failed to compile `jcli v0.2.4 (/home/jschreck/jor-test/jormungandr/jcli)`, intermediate artifacts can be found at `/home/jschreck/jor-test/jormungandr/target`
  76.  
  77. Caused by:
  78. failed to open: /home/jschreck/jor-test/jormungandr/target/release/.cargo-lock
  79.  
  80. Caused by:
  81. Permission denied (os error 13)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement