Hi everyone -- I'm trying to set up a locally runn...
# prefect-getting-started
s
Hi everyone -- I'm trying to set up a locally running prefect server with
prefect server start
. For some reason, the UI is returning a blank page if I use any version that's later than 2.14.13. Has anyone encountered this issue and know how to resolve it? I would like to use features in a later version of Prefect.
Copy code
$ pip install prefect==2.14.13
$ rm -rf ~/.prefect
$ prefect server start


 ___ ___ ___ ___ ___ ___ _____
| _ \ _ \ __| __| __/ __|_   _|
|  _/   / _|| _|| _| (__  | |
|_| |_|_\___|_| |___\___| |_|

Configure Prefect to communicate with the server with:

    prefect config set PREFECT_API_URL=<http://127.0.0.1:4200/api>

View the API reference documentation at <http://127.0.0.1:4200/docs>

Check out the dashboard at <http://127.0.0.1:4200>
At this point, I am able to access the UI on any browser
Copy code
pip install prefect==2.14.14
$ rm -rf ~/.prefect
$ prefect server start


 ___ ___ ___ ___ ___ ___ _____
| _ \ _ \ __| __| __/ __|_   _|
|  _/   / _|| _|| _| (__  | |
|_| |_|_\___|_| |___\___| |_|

Configure Prefect to communicate with the server with:

    prefect config set PREFECT_API_URL=<http://127.0.0.1:4200/api>

View the API reference documentation at <http://127.0.0.1:4200/docs>

Check out the dashboard at <http://127.0.0.1:4200>
Now, the UI returns a blank page. The same is true for many later versions that I've tried.