Skip to content

Commit

Permalink
updates to readme and install files
Browse files Browse the repository at this point in the history
  • Loading branch information
qudsiramiz committed Dec 31, 2024
1 parent 4133b69 commit 36b5957
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,19 @@ by following these steps:
pip install lexi-version.tar.gz
```

This will install lexi and all its dependencies.
This will install `lexi` and all its dependencies.

## Verifying the installation
You can verify that lexi was installed by running the following command:

```bash
pip show lexi
pip show lexi_bu
```

which should produce output similar to the following:

```
Name: lexi
Name: lexi_bu
Version: 0.0.1
Summary: Main repository for all data analysis related to LEXI
Home-page:
Expand All @@ -135,7 +135,7 @@ which should produce output similar to the following:
--------------- -------
.....................
kiwisolver 1.4.5
lexi 0.0.1
lexi_bu 0.0.1
matplotlib 3.8.2
numpy 1.26.4
.....................
Expand All @@ -145,7 +145,7 @@ You can open a Python shell and import `lexi` by running the following command:

```bash
python
import lexi
import lexi_bu as lexi
lexi.__version__
```

Expand Down
10 changes: 5 additions & 5 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ by following these steps:
1. Download `lexi-version.tar.gz` directory from the following link: `Download LEXI Software <https://lexi-bu.github.io/software/dist/lexi-0.0.1.tar.gz>`_

2. Copy the `lexi-version.tar.gz` file into `Documents/lexi` (or any other directory where you want
to install Lexi in).
to install lexi in).

3. Activate your virtual environment using the instructions above.

Expand All @@ -115,13 +115,13 @@ You can verify that Lexi was installed by running the following command:

.. code-block:: bash
pip show lexi
pip show lexi_bu
This should produce output similar to the following:

.. code-block::
Name: lexi
Name: lexi_bu
Version: 0.0.1
Summary: Main repository for all data analysis related to LEXI
Home-page:
Expand All @@ -146,7 +146,7 @@ This should produce output similar to the following:
--------------- -------
.....................
kiwisolver 1.4.5
lexi 0.0.1
lexi_bu 0.0.1
matplotlib 3.8.2
numpy 1.26.4
.....................
Expand All @@ -156,7 +156,7 @@ You can open a Python shell and import Lexi by running the following commands:
.. code-block:: bash
python
import lexi
import lexi_bu as lexi
lexi.__version__
This should produce output similar to the following:
Expand Down

0 comments on commit 36b5957

Please sign in to comment.