Why not load the library in student lite version?
2 Answers
0
You can load GAUSS libraries and dynamic (shared) libraries into the light version of GAUSS. Could you post the specific error message that you are seeing?
0
I want to install the gauss library rpb and the link of the lib is http://www.thierry-roncalli.com/download/gauss-rpb-64.zip. Here are the install steps from the book:
1.1 Installation
1. The file gauss-rpb.zip is a zipped archive file. Copy this file under the
root directory of Gauss, for example c:\gauss.
2. Unzip the file. Directories will then be created and files will be copied
over them:
target_path\dlib DLLs
target_path\lib library file RPB.LCG
target_path\rpb readme.txt
target_path\rpb\prg example and tutorial files
target_path\rpb\src source code files
target_path\src source code files
3. If the root of Gauss is c:\gauss, the installation is finished, otherwise
we have to modify the paths of the library using notepad or the LibTool.
Another way to update the library is to run Gauss, log on to the target_
path\rpb\src directory, delete the path with the command lib rpb -n
and add the path to the library with the command lib rpb -a.
1.2 Getting started
Gauss 6.0+ for Windows is required to use the RPB routines.
1.2.1 readme.txt le
The le readme.txt contains last minute information on the RPB procedures.
Please read it before using them.
1.2.2 Setup
In order to use these procedures, the RPB library must be active. This
is done by including RPB in the LIBRARY statement at the top of your
program:
library rpb;
To reset global variables in subsequent executions of the program and in order
to load DLLs, the following instruction should be used:
rpbSet;
My Gauss version is the GAUSS_Light_16_MacOSX_64.zip. According to the above steps,the result is not successful.Then I guess the question is the path error and try to modify some file such gauss.cfg(adding " $(GAUSSDIR)/rpb/src"to the "src_path" and rpb.lib(modifying the "src\" as "rpb\src\"), the result is also unsuccessful.
Your Answer
2 Answers
You can load GAUSS libraries and dynamic (shared) libraries into the light version of GAUSS. Could you post the specific error message that you are seeing?
I want to install the gauss library rpb and the link of the lib is http://www.thierry-roncalli.com/download/gauss-rpb-64.zip. Here are the install steps from the book:
1.1 Installation
1. The file gauss-rpb.zip is a zipped archive file. Copy this file under the
root directory of Gauss, for example c:\gauss.
2. Unzip the file. Directories will then be created and files will be copied
over them:
target_path\dlib DLLs
target_path\lib library file RPB.LCG
target_path\rpb readme.txt
target_path\rpb\prg example and tutorial files
target_path\rpb\src source code files
target_path\src source code files
3. If the root of Gauss is c:\gauss, the installation is finished, otherwise
we have to modify the paths of the library using notepad or the LibTool.
Another way to update the library is to run Gauss, log on to the target_
path\rpb\src directory, delete the path with the command lib rpb -n
and add the path to the library with the command lib rpb -a.
1.2 Getting started
Gauss 6.0+ for Windows is required to use the RPB routines.
1.2.1 readme.txt le
The le readme.txt contains last minute information on the RPB procedures.
Please read it before using them.
1.2.2 Setup
In order to use these procedures, the RPB library must be active. This
is done by including RPB in the LIBRARY statement at the top of your
program:
library rpb;
To reset global variables in subsequent executions of the program and in order
to load DLLs, the following instruction should be used:
rpbSet;
My Gauss version is the GAUSS_Light_16_MacOSX_64.zip. According to the above steps,the result is not successful.Then I guess the question is the path error and try to modify some file such gauss.cfg(adding " $(GAUSSDIR)/rpb/src"to the "src_path" and rpb.lib(modifying the "src\" as "rpb\src\"), the result is also unsuccessful.