Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. which -a orca
  2. ~/.conda/envs/dev_env/bin/orca
  3.  
  4. withr::with_path(new = normalizePath(
  5. file.path(path.expand("~"), ".conda", "envs", "dev_env", "bin", "orca")
  6. ),
  7. action = "prefix",
  8. code {
  9. # export graph, not relevant
  10. })
  11.  
  12. withr::with_path(new = normalizePath(file.path(
  13. "~", ".conda", "envs", "dev_env", "bin", "orca"
  14. )),
  15. action = "prefix",
  16. code = {
  17. Sys.which("orca")
  18.  
  19. })
  20.  
  21. # orca
  22. # ""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement