Difference between revisions of "Post Setup Steps (Windows/Linux)"
From MNE-CPP Wiki
(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''' | |
− | Add the Qt bin directory to the _PATH_ environment variable | + | Add the Qt bin directory to the _PATH_ environment variable: |
− | + | # right-click _Computer_ and click _Properties_ | |
− | + | # click _Advanced System Settings_ link in the left column | |
− | + | # in the _System Properties_ window click the _Environment Variables_ button | |
− | + | # 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 | Add Qt bin and lib directory to the environment variables | ||
− | + | <source lang=cpp> | |
− | + | export PATH=$PATH:~/Qt/Qt5.3.2-opengl/bin | |
+ | export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/Qt/Qt5.3.2-opengl/lib | ||
+ | </source> | ||
− | |||
Add mne-cpp bin and lib Directory to the environment variables | Add mne-cpp bin and lib Directory to the environment variables | ||
− | + | <source lang=cpp> | |
− | + | 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:
- right-click _Computer_ and click _Properties_
- click _Advanced System Settings_ link in the left column
- in the _System Properties_ window click the _Environment Variables_ button
- 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