Skip to content

Commit

Permalink
Remove duplicated dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
l0drex committed Nov 10, 2023
1 parent 1414164 commit e21836e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,17 @@ bash
# Clones the code to your local machine
git clone https://github.com/oskarsh/Yin-Yang.git
cd Yin-Yang
## Creates virtual environment for pypi packages
python3 -m venv .venv
source .venv/bin/activate
# Installs pip requirements specified in repository
pip3 install -r requirements.txt
# Installs Yin-Yang
./scripts/install.sh
```

For development, skip the install and instead create a venv in your home directory:
```bash
python -m venv .venv
source .venv/bin/activate # this is for bash, there are similar scripts in the that directory for other shells like fish
pip install -r requirements.txt
```

## Documentation

Want to help out? Check out the wiki to learn how to contribute translations, plugins and more!
Expand Down

0 comments on commit e21836e

Please sign in to comment.