You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
562 B
38 lines
562 B
1 month ago
|
#!/bin/bash
|
||
|
|
||
|
#reset
|
||
|
|
||
|
#clear
|
||
|
#set -e
|
||
|
|
||
|
#set -x
|
||
|
|
||
|
sudo apt update
|
||
|
|
||
|
sudo apt install -y python3-pip
|
||
|
|
||
|
sudo apt install -y python3-flask
|
||
|
|
||
|
##sudo apt install -y python3.12-venv
|
||
|
|
||
|
##python3 -m venv my_venv
|
||
|
|
||
|
##source my_venv/bin/activate
|
||
|
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
# sudo pip install jobspy --break-system-packages
|
||
|
|
||
|
## dev notes / we just install it twice. fuck it. i dont care to get cute.
|
||
|
|
||
|
pip install Flask-CORS
|
||
|
|
||
|
pip install -U python-jobspy
|
||
|
|
||
|
#pip[p install -U python-jobspy --break-system-packages ## worked on jacques's garuda box 12/19
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
##pip install flask
|