<div class="termy">
```console
-$ pip install uvicorn[standard]
+$ pip install "uvicorn[standard]"
---> 100%
```
* <a href="https://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
* <a href="https://github.com/ijl/orjson" target="_blank"><code>orjson</code></a> - Required if you want to use `ORJSONResponse`.
-You can install all of these with `pip install fastapi[all]`.
+You can install all of these with `pip install "fastapi[all]"`.
## License
<div class="termy">
```console
- $ pip install uvicorn[standard]
+ $ pip install "uvicorn[standard]"
---> 100%
```
<div class="termy">
```console
-$ pip install uvicorn[standard] gunicorn
+$ pip install "uvicorn[standard]" gunicorn
---> 100%
```
<div class="termy">
```console
-$ pip install uvicorn[standard]
+$ pip install "uvicorn[standard]"
---> 100%
```
* <a href="https://www.uvicorn.org" target="_blank"><code>uvicorn</code></a> - for the server that loads and serves your application.
* <a href="https://github.com/ijl/orjson" target="_blank"><code>orjson</code></a> - Required if you want to use `ORJSONResponse`.
-You can install all of these with `pip install fastapi[all]`.
+You can install all of these with `pip install "fastapi[all]"`.
## License
<div class="termy">
```console
-$ pip install fastapi[all]
+$ pip install "fastapi[all]"
---> 100%
```
Also install `uvicorn` to work as the server:
```
- pip install uvicorn[standard]
+ pip install "uvicorn[standard]"
```
And the same for each of the optional dependencies that you want to use.
<div class="termy">
```console
-$ pip install python-jose[cryptography]
+$ pip install "python-jose[cryptography]"
---> 100%
```
<div class="termy">
```console
-$ pip install passlib[bcrypt]
+$ pip install "passlib[bcrypt]"
---> 100%
```