... | ... | @@ -25,8 +25,8 @@ We strongly advise against modifying this environment for any purpose as this co |
|
|
|
|
|
|
|
|
|
|
|
### Method 2
|
|
|
|
|
|
### Method 2 (not recommended)
|
|
|
or
|
|
|
Download Anaconda from https://www.anaconda.com/download. Choose the Python 3.8 version and follow the installer instructions. For help regarding installation, please refer to the Anaconda installation guide. Anaconda includes most of the required python libraries, however some packages need to be installed manually. To do that, start an Anaconda prompt from the Start Menu (Windows) or re-open a terminal (Linux, MacOS) and type the following:
|
|
|
|
|
|
```
|
... | ... | @@ -81,6 +81,25 @@ To return to Simulated Raman Mode, set: |
|
|
raman_interface = SIMULATED_RAMAN_CONTROL
|
|
|
```
|
|
|
|
|
|
## Working with a different branch (advanced)
|
|
|
|
|
|
- A newer –not yet released, but fairly stable– version of Gepard can be downloaded from branch ```Tiling2Develop```.
|
|
|
- If you plan to use Gepard with a ThermoFischer FTIR microscope *and feel adventurous*, you can download from branch ```Gepard_GU```.
|
|
|
|
|
|
In any of these cases, you will need Python 3.8, so please follow [Method 1](###-method-1-(recommended)) as a starting point to set up the environment.
|
|
|
|
|
|
In the newer versions, the file structure of the project has changed and Gepard is split into two separate modules handling the measurement and evaluation part.
|
|
|
The parent folder is named by default ```gepard-[name of branch]```, but you can call it anything you wish.
|
|
|
In subfolder ```gepard\cythonModules``` you will find the modules that need to be compiled: ```setup_getMaxRect.py``` and ```setuptsp.py```.
|
|
|
The two gepard modules are called from inside the parent folder with:
|
|
|
```
|
|
|
python -m gepard
|
|
|
```
|
|
|
and
|
|
|
```
|
|
|
python -m gepardevaluation
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Errors and solutions
|
... | ... | |