-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME
43 lines (26 loc) · 1.05 KB
/
README
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
31
32
33
34
35
36
37
FOXSISIM: FOXSI Optics Simulation Tool
+---INSTALL----------------------------------------------------------+
To do complete install:
sudo python setup.py install
To install in current directory:
python setup.py install --home=.
When installing to local directory, you need to update PATH
and PYTHONPATH variables in order to use the foxsisim tools:
Linux:
1. Open ~/.bashrc in a text editor
2. Add the following line, where FOXSISIM_DIR is the
location of your foxsisim root directory:
export PATH=$PATH:"FOXSISIM_DIR/bin"
export PYTHONPATH=$PYTHONPATH:"FOXSISIM_DIR/lib/python"
+---HELP-------------------------------------------------------------+
For help using the foxsisim module use python's help() command.
For example:
>>> import foxsisim
>>> help(foxsisim)
>>> from foxsisim.module import Module
>>> help(Module)
Also, see the foxsisim/examples/ folder.
To run the GUI from the command line, type:
foxsisim-gui.py
For help using foxsisim-gui, see the Quickstart guide located in
the foxsisim/doc/ folder.