安装superset时遇到的问题

Error 1: Was unable to import superset Error: cannot import name 'quoted_name'

When I tried to create an administrator account I got this error: Was unable to import superset Error: cannot import name 'quoted_name'

fabmanager create-admin --app superset

You can run the following command:

wget raw.githubusercontent.com/apache/incubator-superset/master/requirements.txt

pip install -r requirements.txt

Error 2: OSError: [Errno 48] Address already in use

When I tried to start a development web server on port 8088 I got this error: OSError: [Errno 48] Address already in use

superset runserver -d

You can kill the processes using the port by the following command or change to another port.
Show the list of processes using the port:

 sudo lsof -i:5000

Use the id on the PID column to terminate the process:

 kill 379 #use the provided PID

Note:

  • python 3.6
  • macOS
  • 2019.1.14

猜你喜欢

转载自www.cnblogs.com/iwangwei/p/10373292.html