Installation ERROR
See original GitHub issueHi, I have tried to make a brand new installation of Superset and it was impossible. It complains about a conflict with library versions
Superset version
0.27
Expected results
Run superset locally with docker commands
Actual results
The installation fails in the last step
Steps to reproduce
Follow the official Documentation to install Superset.
The command that prompts the error is:
bash docker-init.sh
Console output says:
`Traceback (most recent call last): File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 655, in _build_master ws.require(requires) File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 963, in require needed = self.resolve(parse_requirements(requirements)) File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 854, in resolve raise VersionConflict(dist, req).with_context(dependent_req) pkg_resources.ContextualVersionConflict: (Click 7.0 (/usr/local/lib/python3.5/dist-packages), Requirement.parse(‘click==6.7’), {‘Flask-AppBuilder’})
During handling of the above exception, another exception occurred:
Traceback (most recent call last): File “/usr/local/bin/fabmanager”, line 6, in <module> from pkg_resources import load_entry_point File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 3019, in <module> @_call_aside File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 3003, in _call_aside f(*args, **kwargs) File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 3032, in _initialize_master_working_set working_set = WorkingSet._build_master() File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 657, in _build_master return cls._build_from_requirements(requires) File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 670, in _build_from_requirements dists = ws.resolve(reqs, Environment()) File “/usr/lib/python3/dist-packages/pkg_resources/init.py”, line 849, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The ‘click==6.7’ distribution was not found and is required by Flask-AppBuilder`
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top GitHub Comments
I’ve fixed the same issue as follows:
pip install Click==6.7 --user pip install colorama==0.3.9 --user
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.