forked from VOICEVOX/voicevox_engine
-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
803fd7e
commit 535cebf
Showing
1 changed file
with
15 additions
and
0 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,15 @@ | ||
python -m venv venv | ||
.\venv\Scripts\activate | ||
pip list | ||
pip install --upgrade pip setuptools | ||
pip install --no-deps -r requirements-coeiroink-no-deps.txt | ||
pip install -r requirements-coeiroink.txt | ||
pip install -r requirements-dev.in | ||
python generate_licenses.py > licenses.json | ||
pip install pyinstaller | ||
pyinstaller run.py | ||
mkdir dist/run/espnet | ||
cp venv/Lib/site-packages/espnet/version.txt dist/run/espnet/ | ||
mkdir dist/run/librosa/util/example_data | ||
cp venv/Lib/site-packages/librosa/util/example_data/registry.txt dist/run/librosa/util/example_data/ | ||
cp venv/Lib/site-packages/librosa/util/example_data/index.json dist/run/librosa/util/example_data/ |