0

I am trying to build superset from source on a linux box (debian). The goal is to deploy it on a web server (apache2 for example) .

Is it at all possible to deploy as a standalone webapplication on a web server without using the "python setup.py install" command ?

If not, I have tried building it as suggested on this page : https://superset.incubator.apache.org/installation.html#making-your-own-build But encountered the following error :

Installed /usr/local/lib/python2.7/dist-packages/SQLAlchemy_Utils-0.33.3-py2.7.egg error: The 'sqlalchemy' distribution was not found and is required by superset

Should i be installing any SQLAlchemy packages before perfoming the superset installation ?

UserASR
  • 2,015
  • 4
  • 24
  • 47
John
  • 1
  • 1

1 Answers1

0

Try pip install -r requirements.txt before setup.py for some reason the new install method doesn't install dependencies correctly.

Climbs_lika_Spyder
  • 6,004
  • 3
  • 39
  • 53