916
Comment: download links
|
2007
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
The following instructions will work with cmake changes introduced in https://github.com/cryoem/eman2/pull/65. |
|
Line 9: | Line 7: |
1. Download and install [[https://www.continuum.io/downloads | Anaconda2]]/[[https://conda.io/miniconda.html | Miniconda2]]. | 1. Download and install [[https://www.continuum.io/downloads | Anaconda2]] or [[https://conda.io/miniconda.html | Miniconda2]]. |
Line 17: | Line 15: |
1. Install dependencies ('''Work-In-Progress''') 1. `eman.yaml` 1. meta-package |
1. Optionally, activate an existing conda environment, e.g. `source activate eman-env`. Skip this step, if you don't understand this statement. However, if you already use anaconda, you may get package conflicts when you install eman dependencies in the next step. In that case, you need to install eman and its dependencies in its own conda environment and skip next step, "Install dependencies".{{{ conda create -n eman-env eman-deps -c cryoem -c defaults -c conda-forge source activate eman-env }}} |
Line 21: | Line 20: |
1. Optionally, activate an existing conda environment, i.e. `source activate eman-env`. | 1. Install dependencies {{{ conda install eman-deps -c cryoem -c defaults -c conda-forge }}} Listing the channels explicitly can be avoided by specifying them in $HOME/.condarc, see conda documentation for more details, https://conda.io/docs/using/index.html. |
Line 23: | Line 24: |
1. Out-of-source builds are recommended, so work in a directory outside of eman2 source. {{{ | 1. Out-of-source builds are recommended, so work in a directory outside of eman2 source (this is generally true, not EMAN2-specific). Note '''cmake''', not '''--( ccmake )--'''. CMake will automatically find the dependencies. If you want to change any of the CMake values, then use '''cmake-gui''' or '''ccmake'''. {{{ |
Line 26: | Line 27: |
cmake <some-path-to-keep-eman2-source> make -j |
rm -f CMakeCache.txt # This is needed to ensure cmake doesn't have any leftovers from previous runs cmake <some-path-to-keep-eman2-source> -DENABLE_CONDA=ON \ -DEMAN_CXX_FLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" # This flag will be set in cmake with https://github.com/cryoem/eman2/pull/80 make -j # "make" should pick up the number of available processors, make -j4 # but you may specify the number if you like |
Line 30: | Line 34: |
# == Linux == == Windows == |
!!! UNDER CONSTRUCTION !!!
All platforms
Mac OS X, Linux
Download and install Anaconda2 or Miniconda2.
Checkout EMAN2 code from GitHub:cryoem/eman2.
cd <some-path-to-keep-eman2-source> git clone https://github.com/cryoem/eman2.git
Optionally, activate an existing conda environment, e.g. source activate eman-env. Skip this step, if you don't understand this statement. However, if you already use anaconda, you may get package conflicts when you install eman dependencies in the next step. In that case, you need to install eman and its dependencies in its own conda environment and skip next step, "Install dependencies".
conda create -n eman-env eman-deps -c cryoem -c defaults -c conda-forge source activate eman-env
Install dependencies
conda install eman-deps -c cryoem -c defaults -c conda-forge
Listing the channels explicitly can be avoided by specifying them in $HOME/.condarc, see conda documentation for more details, https://conda.io/docs/using/index.html.
Out-of-source builds are recommended, so work in a directory outside of eman2 source (this is generally true, not EMAN2-specific). Note cmake, not ccmake . CMake will automatically find the dependencies. If you want to change any of the CMake values, then use cmake-gui or ccmake.
cd <build-directory> rm -f CMakeCache.txt # This is needed to ensure cmake doesn't have any leftovers from previous runs cmake <some-path-to-keep-eman2-source> -DENABLE_CONDA=ON \ -DEMAN_CXX_FLAGS="-D_GLIBCXX_USE_CXX11_ABI=0" # This flag will be set in cmake with https://github.com/cryoem/eman2/pull/80 make -j # "make" should pick up the number of available processors, make -j4 # but you may specify the number if you like make install