|
<!--Copyright 2023 The HuggingFace Team. All rights reserved. |
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
|
the License. You may obtain a copy of the License at |
|
|
|
http: |
|
|
|
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
|
an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
|
specific language governing permissions and limitations under the License. |
|
--> |
|
|
|
# Installation |
|
|
|
Before you start, you will need to setup your environment, install the appropriate packages, and configure π€ PEFT. π€ PEFT is tested on **Python 3.7+**. |
|
|
|
π€ PEFT is available on pypi, as well as GitHub: |
|
|
|
## pip |
|
|
|
To install π€ PEFT from pypi: |
|
|
|
```bash |
|
pip install peft |
|
``` |
|
|
|
## Source |
|
|
|
New features that haven't been released yet are added every day, which also means there may be some bugs. To try them out, install from the GitHub repository: |
|
|
|
```bash |
|
pip install git+https: |
|
``` |
|
|
|
If you're working on contributing to the library or wish to play with the source code and see live |
|
results as you run the code, an editable version can be installed from a locally-cloned version of the |
|
repository: |
|
|
|
```bash |
|
git clone https: |
|
cd peft |
|
pip install -e . |
|
``` |
|
|