mirror of
https://github.com/FlagOpen/FlagEmbedding.git
synced 2025-07-13 12:05:55 +00:00
43 lines
1.1 KiB
ReStructuredText
43 lines
1.1 KiB
ReStructuredText
:github_url: https://github.com/AI4Finance-Foundation/FinRL
|
|
|
|
Installation
|
|
============
|
|
|
|
Using pip:
|
|
----------
|
|
|
|
If you do not want to finetune the models, you can install the package without the finetune dependency:
|
|
|
|
.. code:: bash
|
|
|
|
pip install -U FlagEmbedding
|
|
|
|
If you want to finetune the models, you can install the package with the finetune dependency:
|
|
|
|
.. code:: bash
|
|
|
|
pip install -U FlagEmbedding[finetune]
|
|
|
|
|
|
Install from sources:
|
|
---------------------
|
|
|
|
Clone the repository and install
|
|
|
|
.. code:: bash
|
|
|
|
git clone https://github.com/FlagOpen/FlagEmbedding.git
|
|
cd FlagEmbedding
|
|
# If you do not want to finetune the models, you can install the package without the finetune dependency:
|
|
pip install .
|
|
# If you want to finetune the models, you can install the package with the finetune dependency:
|
|
pip install .[finetune]
|
|
|
|
For development in editable mode:
|
|
|
|
.. code:: bash
|
|
|
|
# If you do not want to finetune the models, you can install the package without the finetune dependency:
|
|
pip install -e .
|
|
# If you want to finetune the models, you can install the package with the finetune dependency:
|
|
pip install -e .[finetune] |