Skip to content

Commit

Permalink
update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Luehrs committed Nov 29, 2021
1 parent f2f045d commit 63e54d5
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ JUBE version 2 is written in the Python programming language.

You need Python 2.7 or Python 3.2 (or a higher version) to run the program.

Python 3.x is the preferred option to utilize JUBE. Newer upcoming versions of JUBE might not be compatible towards Python2.x any longer.

You also can use Python 2.6 to run JUBE. In this case you had to add the argparse-module (https://pypi.python.org/pypi/argparse) to your Python module library on your own.

# Installation
Expand All @@ -41,7 +43,6 @@ cd JUBE-<version>
python setup.py install --user
```


`$HOME/.local/bin` must be inside your `$PATH` environment variable to use JUBE in an easy way.

Instead you can also specify a self defined path prefix:
Expand All @@ -52,11 +53,18 @@ python setup.py install --prefix=<some_path>

You might be asked during the installation to add your path (and some subfolders) to the `$PYTHONPATH` environment variable (this should be stored in your profile settings):


```bash
export PYTHONPATH=<needed_path>:$PYTHONPATH
```

Another option is to use `pip[3]` for installation (including download):

```bash
pip3 install http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version=latest --user
# or
pip3 install http://apps.fz-juelich.de/jsc/jube/jube2/download.php?version=latest --prefix=<some_path>
```

In addition it is useful to also set the `$PATH` variable again.

To check the installation you can run:
Expand Down

0 comments on commit 63e54d5

Please sign in to comment.