16 lines
233 B
Makefile
16 lines
233 B
Makefile
|
|
|
|
|
|
all:
|
|
python qq.py
|
|
|
|
|
|
|
|
|
|
# Make runs a shell for each line so below is more a reminder. Run this from the terminal! not Make!
|
|
p_env:
|
|
python3 -m venv venv && source ./venv/bin/activate && python3 -m pip install numpy-quaternion
|
|
|
|
|
|
|