-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
47 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Installing development releases of Yokkaichi from git | ||
- Installing the development releases with pipx (from git) | ||
``` | ||
git clone https://github.com/Oreeeee/yokkaichi | ||
cd yokkaichi/ | ||
git checkout master # for semi-stable code | ||
git checkout dev # for development code. Might not run at all!!!! | ||
pipx install . --force --include-deps | ||
yokkaichi -v | ||
``` | ||
- Temporarily installing the development releases with pipx (from git) | ||
``` | ||
git clone https://github.com/Oreeeee/yokkaichi | ||
cd yokkaichi/ | ||
git checkout master # for semi-stable code | ||
git checkout dev # for development code. Might not run at all!!!! | ||
pipx run --spec ./ yokkaichi -v | ||
``` | ||
- Installing the development releases in virtual environment (from git) | ||
``` | ||
git clone https://github.com/Oreeeee/yokkaichi | ||
cd yokkaichi/ | ||
git checkout master # for semi-stable code | ||
git checkout dev # for development code. Might not run at all!!!! | ||
virtualenv .venv | ||
source .venv/bin/activate # for Linux | ||
.venv\bin\activate.bat # for Windows | ||
pip install -e . | ||
yokkaichi -v | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters