-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathINSTALL
32 lines (18 loc) · 850 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
INTRODUCTION AND REQUIREMENTS
The following tools are required to compile Pharao:
- The latest version of the OpenBabel source code (at least version 2.3)
- A C++ compiler (like g++)
- A makefile system (like GNU make)
- CMake system (www.cmake.org)
If you want to install globally on your system, you will need root access, and should follow these instructions.
INSTALL GLOBALLY (YOU NEED ROOT ACCESS)
(1) Open a command window, and decompress the downloaded file with following command:
> tar -xvf pharao.tar.gz
This will create a folder called 'pharao'.
(2) You now need to configure and compile Pharao. Run the following commands, one after the other:
> cd pharao
> cmake CMakeLists.txt
> make
(3) If you have root permissions, you can install Pharao globally. As root, run the following command:
> make install
> make clean