Coding style.
- Use a standard requirements.txt file for python dependencies.
This commit is contained in:
parent
2335dec922
commit
ba1d6b62bb
2 changed files with 10 additions and 2 deletions
|
|
@ -10,8 +10,8 @@ if [ $DIST_ID != "ubuntu" ]; then
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
echo "Installing the dependencies of the eris script…"
|
echo "Installing the dependencies of the eris script…"
|
||||||
sudo apt --yes install python3-pip python3.9 util-linux python3-cwcwidth
|
sudo apt --yes install python3-pip python3.9 util-linux
|
||||||
python3.9 -m pip install pyinotify pygments docopt pillow toml decorator pexpect
|
python3.9 -m pip install -r requirements.txt
|
||||||
echo
|
echo
|
||||||
echo "Installing all the tools eris may need…"
|
echo "Installing all the tools eris may need…"
|
||||||
./install-tools
|
./install-tools
|
||||||
|
|
|
||||||
8
requirements.txt
Normal file
8
requirements.txt
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
pyinotify
|
||||||
|
pygments
|
||||||
|
docopt
|
||||||
|
pillow
|
||||||
|
toml
|
||||||
|
decorator
|
||||||
|
pexpect
|
||||||
|
cwcwidth
|
||||||
Loading…
Add table
Add a link
Reference in a new issue