# HG changeset patch # User Nicolas Saunier # Date 1656605360 -7200 # Node ID 756bc885a57366fb7f96743fd93130d79689b962 # Parent d324305c1240179c547880dd2fa75e9f864b515f modifying makefile to avoid installing with pip and sudo diff -r d324305c1240 -r 756bc885a573 Makefile --- a/Makefile Thu Jun 30 18:05:02 2022 +0200 +++ b/Makefile Thu Jun 30 18:09:20 2022 +0200 @@ -13,19 +13,22 @@ installpython: @echo "=========================================" - @echo "Installing Python modules and scripts" + @echo "Installing Python modules (in user space)" @tar cf /tmp/trafficintelligence.tar setup.py README trafficintelligence @gzip /tmp/trafficintelligence.tar @pip3 install /tmp/trafficintelligence.tar.gz @rm /tmp/trafficintelligence.tar.gz - @cp scripts/* $(INSTALL_DIR) +installpythonscripts: + @echo "=========================================" + @echo "Installing Python scripts" + @cp scripts/*.py $(INSTALL_DIR) uploadpython: @python setup.py sdist @twine upload dist/* --skip-existing #python setup.py sdist upload #python setup.py sdist bdist_wheel -install: cexe installpython +install: cexe installpythonscripts @echo "=========================================" @echo "Installing for Linux" @echo "========================================="