-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.sh
More file actions
executable file
·34 lines (26 loc) · 908 Bytes
/
Copy pathupdate.sh
File metadata and controls
executable file
·34 lines (26 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
echo "Updating dependencies."
rm -rf venv/
python3 -m venv venv/
# Work in local environment
source venv/bin/activate
# Install dependencies
# rm -rf libs/pycord
# mkdir -p libs/pycord
# git clone https://github.com/Pycord-Development/pycord libs/pycord
# cd libs/pycord
# python3 -m pip install --upgrade --force-reinstall .[speed]
# cd ../..
rm -rf libs/servman
mkdir -p libs/servman
git clone /home/daniel/Code/Libs/ServiceManger libs/servman
cd libs/servman
python3 -m pip install --upgrade --force-reinstall .
python3 -m pip install --upgrade --force-reinstall orjson
python3 -m pip install --upgrade --force-reinstall path
python3 -m pip install --upgrade --force-reinstall dataset
python3 -m pip install --upgrade --force-reinstall websockets
python3 -m pip install -U --index-url https://test.pypi.org/simple/ servman-DGGFi
# done
deactivate
echo "Finished updating dependencies."