-
Notifications
You must be signed in to change notification settings - Fork 36
Description
while running program am getting
ImportError: No module named 'Quartz'
Tried by downloading quartz package in order to fix the bug which shows while loading module through pip but that one also doesn't works
Followed these steps:
**(
There seems to be a bug in the setup.py of the package, so I tried the following:
Run: pip download quartz.
Find the downloaded quartz-0.0.1.dev0.tar.gz.
Extract and in setup.py find the following line
install_requires=read_dependencies(“requirements.txt")
and change it to:
install_requires=read_dependencies("quartz.egg-info/requires.txt")
Run: pip install -e /path/to/quartz-0.0.1.dev0.
Setup should be completed w/o errors.)**
and also tried in many ways to install quartz module but am not able to install.
please help me to override this problem.