mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-11-02 04:05:19 +08:00
Remove pipenv and switch to good old pip
This commit is contained in:
14
README.md
14
README.md
@ -97,18 +97,22 @@ This project follows the [all-contributors](https://github.com/all-contributors/
|
||||
|
||||
## Development
|
||||
|
||||
### Setup environement
|
||||
### Setup environment
|
||||
|
||||
You should have [Pipenv](https://pipenv.readthedocs.io/en/latest/) installed. Then, you can install the dependencies with:
|
||||
You should create a virtual environment and activate it:
|
||||
|
||||
```bash
|
||||
pipenv install --dev
|
||||
python -m venv venv/
|
||||
```
|
||||
|
||||
After that, activate the virtual environment:
|
||||
```bash
|
||||
source venv/bin/activate
|
||||
```
|
||||
|
||||
And then install the development dependencies:
|
||||
|
||||
```bash
|
||||
pipenv shell
|
||||
pip install -r requirements.dev.txt
|
||||
```
|
||||
|
||||
### Run unit tests
|
||||
|
||||
Reference in New Issue
Block a user