You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2019/02/15 20:16:14 UTC

[GitHub] mcmauro commented on issue #6886: windows Installation issue: ModuleNotFoundError: No module named 'click' but it is installed

mcmauro commented on issue #6886: windows Installation issue: ModuleNotFoundError: No module named 'click' but it is installed
URL: https://github.com/apache/incubator-superset/issues/6886#issuecomment-464185041
 
 
   Hello there! 
   Superset it is supported on Windows I have just find a WA to install it successfully.
   I did from scratch in a couple of laptop hence I am quite confident that the procedure that I am gonna share with u below is OK.
   the main problem is that the installation procedure https://superset.incubator.apache.org/installation.html is missing of some important details in my opinion...
   Very short I can tell you that the problem was that it is needed to pip some modules directly under the venv... If are already installed does not has any effect because the superset is installed under venv I guess...btw, the procedure below is working for me and I hope will help...
   
   The topic is closed for me. :)
   
   
   Install Python3.6
   
   Microsoft Visual C++ 14.0 is required
   
   google and download the Installer and then from the Interfce install the Microsoft C++ 14
   
   C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts>pip install virtualenv
   
   C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts>virtualenv venv
   
   C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts>venv\Scripts\activate
   (venv) C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts>
   
   open a new DOS shell and install the packages listed below from the path below:
   C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts\venv\Scripts>
   pip install --upgrade setuptools pip
   pip install cryptography
   pip install click
   pip install flask
   pip install pandas==0.23.4  ( very important do not install the latest pandas version)
   
   Move in the DOS shell/path below and run the superset installation
   (venv) C:\Users\MCM_1\AppData\Local\Programs\Python\Python36\Scripts>
   pip install superset
   
   # Create an admin user (you will be prompted to set a username, first and last name before setting a password)
   fabmanager create-admin --app superset
   # Initialize the database
   python superset db upgrade
   # Load some data to play with
   python superset load_examples
   # Create default roles and permissions
   python superset init
   # To start a development web server on port 8088, use -p to bind to another port
   python  superset runserver -d
   enjoy superset from:
   http://localhost:8088

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org