volti
volti copied to clipboard
Errors in setup.py
Installation of Volti can fail when previous version of Volti is already installed.
setup.py contains:
sys.path.append(os.path.realpath("src"))
It adds src directory at the end of sys.path. site-packages directory with previous installation of Volti would be earlier in sys.path.
This line in setup.py should be changed to:
sys.path.insert(0, os.path.realpath("src"))
Modules are not installed.
setup.py contains:
packages = ["volti"],
package_dir = {"volti": "src"},
These lines should be changed to:
packages = ["volti", "volti.gtk2", "volti.gtk3"],
package_dir = {"": "src"},