Difference between revisions of "Post Setup Steps (Windows/Linux)"

From MNE-CPP Wiki
Jump to: navigation, search
(Created page with "# Windows Add the Qt bin directory to the _PATH_ environment variable. 1. right-click _Computer_ and click _Properties_ 2. click _Advanced System Settings_ link in the left...")
 
 
Line 1: Line 1:
# Windows
+
'''Windows'''
  
Add the Qt bin directory to the _PATH_ environment variable.
+
Add the Qt bin directory to the _PATH_ environment variable:
  
1. right-click _Computer_ and click _Properties_
+
# right-click _Computer_ and click _Properties_
2. click _Advanced System Settings_ link in the left column
+
# click _Advanced System Settings_ link in the left column
3. in the _System Properties_ window click the _Environment Variables_ button
+
# in the _System Properties_ window click the _Environment Variables_ button
4. add to the _PATH_ variable _C:\Qt\Qt5.4.2-opengl\bin_ (the qt bin path may differ depending on your installation)
+
# add to the _PATH_ variable _C:\Qt\Qt5.4.2-opengl\bin_ (the qt bin path may differ depending on your installation)
  
 +
'''Linux'''
  
# Linux
 
 
### Qt
 
 
Add Qt bin and lib directory to the environment variables
 
Add Qt bin and lib directory to the environment variables
  
    export PATH=$PATH:~/Qt/Qt5.3.2-opengl/bin
+
<source lang=cpp>
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Qt/Qt5.3.2-opengl/lib
+
export PATH=$PATH:~/Qt/Qt5.3.2-opengl/bin
 +
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Qt/Qt5.3.2-opengl/lib
 +
</source>
  
### MNE-CPP
 
 
Add mne-cpp bin and lib Directory to the environment variables
 
Add mne-cpp bin and lib Directory to the environment variables
  
    export PATH=$PATH:~/Git/mne-cpp/bin
+
<source lang=cpp>
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Git/mne-cpp/lib
+
export PATH=$PATH:~/Git/mne-cpp/bin
 +
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Git/mne-cpp/lib
 +
</source>

Latest revision as of 17:56, 21 January 2016

Windows

Add the Qt bin directory to the _PATH_ environment variable:

  1. right-click _Computer_ and click _Properties_
  2. click _Advanced System Settings_ link in the left column
  3. in the _System Properties_ window click the _Environment Variables_ button
  4. add to the _PATH_ variable _C:\Qt\Qt5.4.2-opengl\bin_ (the qt bin path may differ depending on your installation)

Linux

Add Qt bin and lib directory to the environment variables

export PATH=$PATH:~/Qt/Qt5.3.2-opengl/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Qt/Qt5.3.2-opengl/lib

Add mne-cpp bin and lib Directory to the environment variables

export PATH=$PATH:~/Git/mne-cpp/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Git/mne-cpp/lib