You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you run the above code block, you will get the version of Python that is on the system path—not necessarily the Python executable installed in the virtual environment that the Streamlit code is running under.
25
25
26
-
The solution is to detect the Python executable directy with [`sys.executable`](https://docs.python.org/3/library/sys.html#sys.executable):
26
+
The solution is to detect the Python executable directly with [`sys.executable`](https://docs.python.org/3/library/sys.html#sys.executable):
Copy file name to clipboardexpand all lines: content/streamlit-cloud/deploy-your-app/app-dependencies.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ directory as your Streamlit app.
21
21
22
22
## Add Python dependencies
23
23
24
-
With each `import` statement in your script, you are bringing in a Python dependency. You need to tell Streamlit Community Cloud how to install those depencies through a Python package manager. We recommend using a `requirements.txt` which is based on `pip`.
24
+
With each `import` statement in your script, you are bringing in a Python dependency. You need to tell Streamlit Community Cloud how to install those dependencies through a Python package manager. We recommend using a `requirements.txt` which is based on `pip`.
25
25
26
26
You should _not_ include <ahref="https://docs.python.org/3/py-modindex.html"target="_blank">built-in Python libraries</a> like `math` or `random` in your `requirements.txt` file. These are a part of Python and aren't installed separately. Also, Streamlit Community Cloud has `streamlit` installed by default. You don't strictly need to include `streamlit` unless you want to pin or restrict the version. If you deploy an app without a `requirements.txt` file, your app will run in an environment with just `streamlit` (and its dependencies) installed.
27
27
@@ -61,7 +61,7 @@ We recommend that you use the latest version of Streamlit to ensure full Streaml
61
61
62
62
</Note>
63
63
64
-
If you pin `streamlit` below 1.20.0, you may experience unexpected results if you've pinned any dependencies of `altair`. If `streamlit` is installed below version 1.20.0, `altair<5` will be reinstalled on top of your evironment for compatibility reasons. When this happens all of altair's dependecies will be updated.
64
+
If you pin `streamlit` below 1.20.0, you may experience unexpected results if you've pinned any dependencies of `altair`. If `streamlit` is installed below version 1.20.0, `altair<5` will be reinstalled on top of your environment for compatibility reasons. When this happens all of altair's dependencies will be updated.
Copy file name to clipboardexpand all lines: content/streamlit-cloud/get-started/create-your-account.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
27
27
#### Primary identity option 1: Google
28
28
29
29
1. Go to <ahref="https://share.streamlit.io/signup"target="_blank">share.streamlit.io/signup</a>.
30
-
2. Click "**Continute with Google**".
30
+
2. Click "**Continue with Google**".
31
31
32
32
<divstyle={{maxWidth:'50%',margin:'auto'}}>
33
33
<Imagealt="Sign up for Streamlit Community Cloud with Google"src="/images/streamlit-community-cloud/sign-up-Google-XL.png" />
@@ -48,7 +48,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
48
48
#### Primary identity option 2: email
49
49
50
50
1. Go to <ahref="https://share.streamlit.io/signup"target="_blank">share.streamlit.io/signup</a>.
51
-
2. Enter your email address and click "**Continute with email**".
51
+
2. Enter your email address and click "**Continue with email**".
52
52
53
53
<divstyle={{maxWidth:'50%',margin:'auto'}}>
54
54
<Imagealt="Sign up for Streamlit Community Cloud with email"src="/images/streamlit-community-cloud/sign-up-email-XL.png" />
@@ -74,7 +74,7 @@ If you're sharing a private app, you will assign viewing permission by email. Th
74
74
75
75
### Step 2: Source control
76
76
77
-
Streamlit Community Cloud is integreated with GitHub for source control. If you begin your sign-up process with GitHub, you will not be directly prompted to create a primary identity. However, you can attach a Google account later.
77
+
Streamlit Community Cloud is integrated with GitHub for source control. If you begin your sign-up process with GitHub, you will not be directly prompted to create a primary identity. However, you can attach a Google account later.
78
78
79
79
There are two different authorization requests to completely [Connect your GitHub account](/streamlit-community-cloud/get-started/connect-your-github-account). You will encounter the first authorization request when you begin connecting your GitHub account. A second authorization is needed the first time you deploy an app. If you will be deploying or managing any apps from a GitHub organization, your authorization requests will include additional options to allow [Organization access](/streamlit-community-cloud/get-started/connect-github#organization-access).
Copy file name to clipboardexpand all lines: content/streamlit-cloud/get-started/fork-and-edit.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -27,4 +27,4 @@ Community Cloud is all about learning, sharing, and exploring the world of Strea
27
27
28
28

29
29
30
-
You now have a copy the public app deployed from your account. You can edit and explore within your codespace and (if you choose) commit your changes to your deployed app to share with the world! 🌎 Learn more about editing your app in GitHub Codespaces, commiting your edits to your repository, and shutting down your codespace in [Edit your app with GitHub Codespaces](/streamlit-community-cloud/manage-your-app/edit-your-app#edit-your-app-with-github-codespaces).
30
+
You now have a copy the public app deployed from your account. You can edit and explore within your codespace and (if you choose) commit your changes to your deployed app to share with the world! 🌎 Learn more about editing your app in GitHub Codespaces, committing your edits to your repository, and shutting down your codespace in [Edit your app with GitHub Codespaces](/streamlit-community-cloud/manage-your-app/edit-your-app#edit-your-app-with-github-codespaces).
Welcome to Streamlit Community Cloud, where you can share your Streamlit apps with the world! Whether you've already created your first Streamlit app or you're just getting started, you're in ther right place.
8
+
Welcome to Streamlit Community Cloud, where you can share your Streamlit apps with the world! Whether you've already created your first Streamlit app or you're just getting started, you're in the right place.
9
9
10
10
First things first, you need to create your Streamlit Community Cloud account to start deploying apps.
Copy file name to clipboardexpand all lines: content/streamlit-cloud/manage-your-account/workspace-settings.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ From your workspace at <a href="https://share.streamlit.io" target="_blank">shar
17
17
18
18
The "**Linked accounts**" section shows your current primary identity and source control account. To learn more, see [Manage your account](/streamlit-community-cloud/manage-your-account).
19
19
20
-

20
+

Copy file name to clipboardexpand all lines: content/streamlit-cloud/manage-your-app/edit-your-app.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ Spin up a cloud-based development environment for your deployed app in minutes.
35
35
36
36

37
37
38
-
6. When you make changes to your app, the file is automatically saved within your codespace. Your edits do not affect your repository unless you choose to commit those changes. We will describe commiting your changes in a later step.
38
+
6. When you make changes to your app, the file is automatically saved within your codespace. Your edits do not affect your repository unless you choose to commit those changes. We will describe committing your changes in a later step.
39
39
40
40
In order to see updates automatically reflected on the right, click "**Always rerun**" when prompted after an edit.
0 commit comments