Files
DeepGEMM/install.sh
Chenggang Zhao 9b680f4284 Update install.sh
2025-12-05 17:06:48 +08:00

14 lines
331 B
Bash
Executable File

# Change current directory into project root
original_dir=$(pwd)
script_dir=$(realpath "$(dirname "$0")")
cd "$script_dir"
# Remove old dist file, build files, and install
rm -rf build dist
rm -rf *.egg-info
python setup.py bdist_wheel
pip install dist/*.whl --force-reinstall
# Open users' original directory
cd "$original_dir"