-
-
Notifications
You must be signed in to change notification settings - Fork 294
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
[jarun#753] temporarily block flake-admin-v2 & actualize install instructions #754
Conversation
except Exception: | ||
app.logger.warning('failed to init locale') | ||
except Exception as e: | ||
app.logger.warning(f'failed to init locale ({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.
This includes the error message into the warning, making it easier to tell what happened
$ pip3 install ".[server]" | ||
$ # server with reverse_proxy | ||
$ pip3 install ".[server,reverse_proxy]" |
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.
[reverse_proxy]
is no longer present in setup.py
@@ -20,33 +20,28 @@ So be sure to have `python3`, `python3-pip` , `python3-dev`, `libffi-dev` packag | |||
#### Dependencies | |||
|
|||
``` | |||
$ python3 -m pip install --user --upgrade pip |
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.
Depending on OS, pip install --user
is no longer allowed (unless you pass --break-system-packages
as well)
@@ -20,33 +20,28 @@ So be sure to have `python3`, `python3-pip` , `python3-dev`, `libffi-dev` packag | |||
#### Dependencies | |||
|
|||
``` | |||
$ python3 -m pip install --user --upgrade pip | |||
$ python3 -m pip install --user virtualenv | |||
$ python3 -m virtualenv env |
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.
Installing virtualenv
is no longer necessary: the venv
module is included in basic Python installation (and accomplishes the same result)
Thank you! |
flake-admin
v2 until able to migrate properly when it's released (see TODO: support the incoming v2.0 release of flask-admin #753)[reverse_proxy]
flag – see [jarun#685] included flask-reverse-proxy-fix into the package #722)