13 lines
333 B
Bash
Executable File
13 lines
333 B
Bash
Executable File
cd data
|
|
if [ ! -f "steam.csv" ];
|
|
then
|
|
echo "Downloading dataset from Kaggle..."
|
|
kaggle datasets download -d https://www.kaggle.com/datasets/nikdavis/steam-store-games
|
|
echo "Done."
|
|
fi
|
|
|
|
sed -i -e '1!b;s/steam_appid/appid/' steam_description_data.csv
|
|
cd ..
|
|
|
|
echo "Installing dependencies..."
|
|
pip3 install -r requirements.txt |