Table of Contents
C++ Executable File
To install the executable version of NEFFy:
- Clone the repository:
git clone https://github.com/Maryam-Haghani/Neffy.git
- Navigate to the project directory:
- Compile the code using a C++ compiler that supports C++17 or a newer version, through the provided Makefile in the repository.
- If the
make
command is not available on your operating system, refer to the Help page.
Once the compilation is complete, you can run the program via the command line.
This package is cross-platform and works on Linux, Windows, and macOS without requiring additional compilation.
Python Library
Installation from Source
To install the library from the source:
- Clone the repository:
git clone https://github.com/Maryam-Haghani/Neffy.git
- Navigate to the project directory:
- Ensure you have
setuptools
and wheel
installed: pip install setuptools wheel
- Build the source distribution and wheel:
python setup.py sdist bdist_wheel
- Install the package from the root directory of the project:
- Alternatively, you can install the package directly from the built wheel file (in the
dist
directory): pip install dist/neffy-0.1-py3-none-any.whl
Installation from PyPI (upcoming)
Our Python library will soon be available on PyPI. This will make it easier for you to install and manage the library using pip.
To install the package from PyPI:
For further assistance or inquiries, please contact the developer or create an issue in the GitHub repository.