Hundemeier / sacn

A simple ANSI E1.31 (aka sACN) module for python.
MIT License
47 stars 21 forks source link

setup.py Error #1

Closed localleon closed 6 years ago

localleon commented 6 years ago

Error with your setup.py. If you install it with pip3, the following Error occues.

Command : pip3 install setup.py

Output: Collecting setup.py Could not find a version that satisfies the requirement setup.py (from versions: ) No matching distribution found for setup.py

Hundemeier commented 6 years ago

The solution is very simple: go to your folder were the setup.py file is and execute 'pip install .' If you want to install only symlinks to the files in the directory (eg you want to modify the files and don't want to reinstall all the time) use 'pip install -e .'

For more information on pip installation see: https://packaging.python.org/tutorials/installing-packages/#installing-from-a-local-src-tree