提交 82120c5c 编写于 作者: H Hui Zhang

setup.py install cpp deps

上级 4081633b
......@@ -19,12 +19,12 @@ tqdm
typeguard
visualdl==2.2.0
yacs
numpy
numpy==1.20.0
numba
nltk
inflect
librosa
unidecode
numba
llvmlite
matplotlib
pandas
......@@ -39,4 +39,4 @@ timer
pyworld
jieba
phkit
yq
\ No newline at end of file
yq
[build_ext]
debug=0
[metadata]
license_file = LICENSE
description-file = README.md
[magformat]
formatters=yapf
......@@ -14,6 +14,7 @@
import io
import os
import re
import sys
from pathlib import Path
import contextlib
import inspect
......@@ -31,10 +32,8 @@ HERE = Path(os.path.abspath(os.path.dirname(__file__)))
def pushd(new_dir):
old_dir = os.getcwd()
os.chdir(new_dir)
try:
yield
finally:
os.chdir(old_dir)
yield
os.chdir(old_dir)
def read(*names, **kwargs):
......@@ -43,7 +42,7 @@ def read(*names, **kwargs):
return fp.read()
def check_call(cmd: str, shell=True, executable=None):
def check_call(cmd: str, shell=False, executable=None):
try:
sp.check_call(cmd.split(),
shell=shell,
......@@ -53,49 +52,55 @@ def check_call(cmd: str, shell=True, executable=None):
f"{__file__}:{inspect.currentframe().f_lineno}: CMD: {cmd}, Error:",
e.output,
file=sys.stderr)
raise e
def _pre_install():
def _pre_install(install_lib_dir):
# apt
check_call("apt-get update -y")
check_call("apt-get update -y", False)
check_call("apt-get install -y " + 'vim tig tree sox pkg-config ' +
'libsndfile1 libflac-dev libogg-dev ' +
'libvorbis-dev libboost-dev swig python3-dev ')
'libvorbis-dev libboost-dev swig python3-dev ', False)
print("apt install.")
# tools/make
tool_dir = HERE / "tools"
# for f in tool_dir.glob("*.done"):
# f.unlink()
for f in tool_dir.glob("*.done"):
f.unlink()
with pushd(tool_dir):
check_call("make")
print("tools install.")
# install autolog
tools_extrs_dir = HERE / 'tools/extras'
with pushd(tools_extrs_dir):
check_call(f"bash -e install_autolog.sh")
print("autolog install.")
def _post_install(install_lib_dir):
# ctcdecoder
ctcdecoder_dir = HERE/ 'deepspeech/decoders/ctcdecoder/swig'
with puahd(ctcdecoder_dir):
check_call("setup.sh")
with pushd(ctcdecoder_dir):
check_call("bash -e setup.sh")
print("ctcdecoder install.")
def _post_install(install_lib_dir):
# install third_party
third_party_dir = HERE / 'third_party'
with puahd(third_party_dir):
check_call("bash install.sh")
# install autolog
tools_extrs_dir = HERE / 'tools/extras'
with puahd(tools_extrs_dir):
check_call("bash install_autolog.sh")
with pushd(third_party_dir):
check_call("bash -e install.sh")
print("third_party install.")
class DevelopCommand(develop):
def run(self):
_pre_install()
self.execute(_pre_install, (self.install_lib, ), msg="Pre Install...")
develop.run(self)
self.execute(_post_install, (self.install_lib, ), msg="Post Install...")
class InstallCommand(install):
def run(self):
_pre_install()
self.execute(_pre_install, (self.install_lib, ), msg="Pre Install...")
install.run(self)
self.execute(_post_install, (self.install_lib, ), msg="Post Install...")
......
#!/bin/bash
#install auto-log
python -c "import auto_log"
echo "Install auto_log into default system path"
test -d AutoLog || git clone https://github.com/LDOUBLEV/AutoLog
if [ $? != 0 ]; then
info_msg "Install auto_log into default system path"
test -d AutoLog || git clone https://github.com/LDOUBLEV/AutoLog
if [ $? != 0 ]; then
error_msg "Download auto_log failed !!!"
exit 1
fi
cd AutoLog
pip install -r requirements.txt
python setup.py install
cd ..
rm -rf AutoLog
fi
\ No newline at end of file
error_msg "Download auto_log failed !!!"
exit 1
fi
pushd AutoLog
pip install -r requirements.txt
python setup.py install
popd
rm -rf AutoLog
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册