forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.txt
39 lines (29 loc) · 1.12 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# INSTALL / BUILD instructions for Apache Superset (incubating)
# These instructions should work along sources releases under
# https://dist.apache.org/repos/dist/dev/incubator/superset/*/*source.tar.gz$
# [required] fetch the tarball and untar the source
# change into the directory that was untarred.
#############################
# Dependencies
#############################
# Superset runs best on python3.6
# Also recommended is the latest long term supported node / npm
# For complementary information read our CONTRIBUTING.md
# for OS level dependencies find instructions here:
# http://superset.apache.org/installation.html
# Fetch npm dependencies
cd superset/assets/
npm ci
# Build the Javascript bundles
npm run build
# Back to the root of the repo
cd ../..
# [optional] Superset pulls in quite a lot of dependencies in order
# to connect to other services. You might want to test or run Superset
# from a virtual env to make sure those dependencies are separated
# from your system wide versions
python3 -m env36
source env36/bin/activate
# [required] building and installing by pip (preferred)
pip install .
# superset --help