Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. colby@Linux-PC:~$ conda create python=3 --name orange3
  2. Fetching package metadata ...
  3. ....
  4. Solving package specifications: ..........
  5.  
  6. Package plan for installation in environment /home/colby/miniconda3/envs/orange3:
  7.  
  8. The following packages will be downloaded:
  9.  
  10. package | build
  11. ---------------------------|-----------------
  12. xz-5.2.2 | 1 669 KB
  13. python-3.6.0 | 0 16.3 MB
  14. setuptools-27.2.0 | py36_0 523 KB
  15. wheel-0.29.0 | py36_0 88 KB
  16. pip-9.0.1 | py36_1 1.7 MB
  17. ------------------------------------------------------------
  18. Total: 19.2 MB
  19.  
  20. The following NEW packages will be INSTALLED:
  21.  
  22. openssl: 1.0.2j-0
  23. pip: 9.0.1-py36_1
  24. python: 3.6.0-0
  25. readline: 6.2-2
  26. setuptools: 27.2.0-py36_0
  27. sqlite: 3.13.0-0
  28. tk: 8.5.18-0
  29. wheel: 0.29.0-py36_0
  30. xz: 5.2.2-1
  31. zlib: 1.2.8-3
  32.  
  33. Proceed ([y]/n)?
  34. Fetching packages ...
  35. xz-5.2.2-1.tar 100% |################################| Time: 0:00:00 2.03 MB/s
  36. python-3.6.0-0 100% |################################| Time: 0:00:04 3.58 MB/s
  37. setuptools-27. 100% |################################| Time: 0:00:00 2.21 MB/s
  38. wheel-0.29.0-p 100% |################################| Time: 0:00:00 804.92 kB/s
  39. pip-9.0.1-py36 100% |################################| Time: 0:00:01 1.72 MB/s
  40. Extracting packages ...
  41. [ COMPLETE ]|###################################################| 100%
  42. Linking packages ...
  43. [ COMPLETE ]|###################################################| 100%
  44. #
  45. # To activate this environment, use:
  46. # > source activate orange3
  47. #
  48. # To deactivate this environment, use:
  49. # > source deactivate orange3
  50. #
  51.  
  52. colby@Linux-PC:~$ source activate orange3
  53. (orange3) colby@Linux-PC:~$ conda config --add channels conda-forge
  54. (orange3) colby@Linux-PC:~$ conda install orange3
  55. Fetching package metadata .........
  56. Solving package specifications: ....
  57.  
  58.  
  59. UnsatisfiableError: The following specifications were found to be in conflict:
  60. - orange3
  61. - python 3.6*
  62. Use "conda info <package>" to see the dependencies for each package.
  63.  
  64.  
  65. (orange3) colby@Linux-PC:~$ conda info
  66. Current conda install:
  67.  
  68. platform : linux-64
  69. conda version : 4.2.12
  70. conda is private : False
  71. conda-env version : 4.2.12
  72. conda-build version : not installed
  73. python version : 3.5.2.final.0
  74. requests version : 2.11.1
  75. root environment : /home/colby/miniconda3 (writable)
  76. default environment : /home/colby/miniconda3/envs/orange3
  77. envs directories : /home/colby/miniconda3/envs
  78. package cache : /home/colby/miniconda3/pkgs
  79. channel URLs : https://conda.anaconda.org/conda-forge/linux-64
  80. https://conda.anaconda.org/conda-forge/noarch
  81. https://repo.continuum.io/pkgs/free/linux-64
  82. https://repo.continuum.io/pkgs/free/noarch
  83. https://repo.continuum.io/pkgs/pro/linux-64
  84. https://repo.continuum.io/pkgs/pro/noarch
  85. config file : /home/colby/.condarc
  86. offline mode : False
  87.  
  88. (orange3) colby@Linux-PC:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement