Files
DeepGEMM/install.sh

14 lines
331 B
Bash
Raw Permalink Normal View History

# 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
2025-12-05 17:06:48 +08:00
pip install dist/*.whl --force-reinstall
# Open users' original directory
cd "$original_dir"