-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix some incorrect documents in multiuser doc #640
Conversation
I noticed that there's a more serious mistake here (putting password to db), so I changed the doc accordingly. |
@@ -118,7 +118,7 @@ Follow the steps below to setup `multiuser` mode. | |||
1. Install backend requirements | |||
```bash | |||
cd studio | |||
pip install . | |||
pip install -e . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pip install .
installs the packages into site-packages
under the anaconda env without copying the config modified in the previous sections. So we need to use editable install or put config files under site-packages
.
Thank you very much. |
Then can I close this one? |
@kngwyu |
Just removed a comma.