Changes between Version 1 and Version 2 of cypress/Visualization Toolkit (VTK)


Ignore:
Timestamp:
08/20/15 11:23:06 (9 years ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/Visualization Toolkit (VTK)

    v1 v2  
    33[http://www.vtk.org/Wiki/VTK/Tutorials]
    44
     5
     6== anaconda python ==
     7To use anaconda python
     8{{{#!bash
     9$ module load anaconda
     10}}}
     11
     12But the current version of anaconda doesn't have ''vtk'' package in default.
     13
     14To install vtk package in local, first you have to create local python clone.
     15
     16{{{#!bash
     17[fuji@cypress2 VTK]$ conda create -n my_root --clone=/share/apps/anaconda/2.1.0
     18src_prefix: '/share/apps/anaconda/2.1.0'
     19dst_prefix: '/home/fuji/envs/my_root'
     20Packages: 140
     21Files: 0
     22Fetching package metadata: ..
     23Linking packages ...
     24[      COMPLETE      ] |##############################################################################################################################################################################| 100%
     25#
     26# To activate this environment, use:
     27# $ source activate my_root
     28#
     29# To deactivate this environment, use:
     30# $ source deactivate
     31#
     32}}}
     33
     34Then do
     35
     36{{{#!bash
     37$ source activate my_root
     38}}}
     39
     40Now you can install vtk package,
     41{{{#!bash
     42$ conda install vtk
     43}}}
     44
     45=== From next time, to use anaconda python ===
     46{{{#!bash
     47$ module load anaconda
     48$ source activate my_root
     49}}}
     50