Main repository for all data analysis related to LEXI
Project description
lexi
Main repository for all data analysis related to LEXI
Installation Guide
The next section of this document will guide you through the installation process of lexi.
Though it is not necessary, we strongly recommend that you install lexi in a virtual environment. This will prevent any conflicts with other Python packages you may have installed.
A virtual environment is a self-contained directory tree that contains a Python installation for a particular version of Python, plus a number of additional packages. You can install packages into a virtual environment without affecting the system Python installation. This is especially useful when you need to install packages that might conflict with other packages you have installed.
Creating a virtual environment
There are several ways to create a virtual environment. We recommend using python3 to do so.
For this exercise, we will assume that you have a directory called Documents/lexi where you will
install lexi and create your virtual environment. Please replace Documents/lexi with the actual
path to the directory where you want to install lexi and create your virtual environment.
- cd into
Documents/lexi
Using python3
You can create a virtual environment called lexi_venv (or any other name you might like) using
python3 by running the following command:
python3 -m venv lexi_venv
You can activate the virtual environment by running the following command:
on Linux/MacOS:
source lexi_venv/bin/activate
on Windows:
.\lexi_venv\Scripts\activate
You can deactivate the virtual environment by running the following command:
deactivate
Installing Lexi
Installing from source
After you have created and activated your virtual environment, you can install lexi directly from GitHub by running the following command:
pip install git+https://github.com/Lexi-BU/lexi
Installing from a local copy
After you have created and activated your virtual environment, you can install lexi from a local copy by following these steps:
-
Download
lexi-version.tar.gzdirectory from the following link: Download LEXI Software -
Copy the
lexi-version.tar.gzfile intoDocuments/lexi(or any other directory where you want to install lexi in). -
Activate your virtual environment using the instructions above.
-
Install lexi by running the following command (NOTE: replace
lexi-version.tar.gzwith the actual name of the file you downloaded):pip install lexi-version.tar.gz
This will install lexi and all its dependencies.
Verifying the installation
You can verify that lexi was installed by running the following command:
pip show lexi
which should produce output similar to the following:
Name: lexi
Version: 0.0.1
Summary: Main repository for all data analysis related to LEXI
Home-page:
Author: qudsiramiz
Author-email: qudsiramiz@gmail.com
License: GNU GPLv3
Location: /home/cephadrius/Desktop/lexi_code_test_v2/lexi_test_v2/lib/python3.10/site-packages
Requires: cdflib, matplotlib, pandas, pytest, toml
Required-by:
You can also verify that lexi was installed by running the following command:
pip list
which should produce output similar to the following:
Package Version
--------------- -------
.....................
kiwisolver 1.4.5
lexi 0.0.1
matplotlib 3.8.2
numpy 1.26.4
.....................
You can open a Python shell and import lexi by running the following command:
python
import lexi
lexi.__version__
which should produce output similar to the following:
'0.0.1'
If that worked, congratulations! You have successfully installed lexi.
Using LEXI Software
NOTE: We will add more examples and tutorials in the future. For now, we will use a Jupyter Notebook
to demonstrate how to use lexi to analyze data from LEXI.
Using the Example Jupyter Notebook
-
If you haven't already, download the example folder from the following link: Download LEXI Examples and extract it to a directory of your choice. We will refer to this directory as
examplesfor the rest of this document. -
Activate your virtual environment. If you haven't already created a virtual environment, please refer to the creating a virtual environment section for instructions on how to do so. Remember that you can activate your virtual environment by running the following command:
on Linux/MacOS:
source lexi_venv/bin/activate
on Windows:
.\lexi_venv\Scripts\activate
-
cdinto theexamplesdirectory and -
If you haven't already, install Jupyter Notebook by running the following command:
pip install jupyter
- Open the Jupyter Notebook by running the following command:
jupyter notebook lexi_tutorial.ipynb
- This will open a new tab in your web browser and will look like the image below:
- You can now run the cells in the Jupyter Notebook to see how to use
lexito analyze data from LEXI.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lexi_bu-0.2.0.tar.gz.
File metadata
- Download URL: lexi_bu-0.2.0.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56c73b7095255105cf8cc4ae4f5945cab5d976b6569a386169fd6732738abb0d
|
|
| MD5 |
01580674f3329721b86e3f9ca0843660
|
|
| BLAKE2b-256 |
0b1cbdfeb4d5656d8b0d5fc78903843a2f938b42df30cef1d4505448ac476193
|
File details
Details for the file lexi_bu-0.2.0-py3-none-any.whl.
File metadata
- Download URL: lexi_bu-0.2.0-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6808b378d7cf28c0e33dcbca944a56cb8e0bf4e36549e9c220fadb56ac96a31
|
|
| MD5 |
7ad291cb56959013692560db1f7fc26a
|
|
| BLAKE2b-256 |
bf0f45d9bb7e08f4f6ed18de29adb511f27c46087a5193767a442dcabb5f1625
|