Installing mlquantify#
The mlquantify library can be easily installed via pip. Below are detailed installation instructions, including its dependencies and differences in using a virtual environment across operating systems.
Dependencies#
Before installing mlquantify, ensure you have the following dependencies:
- scikit-learn
- pandas
- numpy
- joblib
- tqdm
- matplotlib
- xlrd
pip will automatically install these dependencies if they are not already present in your environment.
Installation#
To install the library, use the following command:
pip install mlquantify
Using Virtual Environments#
It is recommended to use virtual environments to manage project dependencies. Below are the instructions for different operating systems.
### Linux/macOS
- Create a virtual environment: - python3 -m venv mlquantify_env 
- Activate the virtual environment: - source mlquantify_env/bin/activate 
- Install the library: - pip install mlquantify 
- To deactivate the virtual environment: - deactivate 
### Windows
- Create a virtual environment: - python -m venv mlquantify_env 
- Activate the virtual environment: - mlquantify_env\Scripts\activate 
- Install the library: - pip install mlquantify 
- To deactivate the virtual environment: - deactivate
Now, mlquantify is ready to be used in your project!