Skip to content
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

Add Colab and Python version #797

Merged
merged 2 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/getting_started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ first application with ease.

# Installation with pip

1. **Prerequisites**: Ensure you have Python (version 3.8 or higher) and
1. **Prerequisites**: Ensure you have Python (**version between 3.8 and 3.11**) and
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We actually plan to support 3.12 in 3.1.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I know about this. We should rechange it when it is out

[pip](https://pip.pypa.io)installed.

2. **Installation Command**: Run the following in your terminal or command prompt:
``` console
FlorianJacta marked this conversation as resolved.
Show resolved Hide resolved
$ pip install taipy
pip install taipy
```

For alternative installation methods or if you're lacking Python or pip, refer to the
Expand Down
29 changes: 28 additions & 1 deletion docs/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ powerful web applications.

# Prerequisite

Before installing Taipy, ensure you have Python (version 3.8 or above) and
Before installing Taipy, ensure you have Python (**between version 3.8 and 3.11**) and
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably not

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

?

[pip](https://pip.pypa.io) installed on your system. If you don't have pip installed, you can
follow these steps to install it:

Expand Down Expand Up @@ -44,6 +44,33 @@ $ pip install taipy

This command will download and install the most recent stable release of Taipy.


# Installing Taipy with Colab

Google Colab is a popular and free Jupyter notebook environment that requires no setup
and runs entirely in the cloud. To install Taipy in Google Colab, follow these simple
steps:

1. **Open a new Colab notebook**: Visit [Google Colab](https://colab.research.google.com)
and start a new notebook.

2. **Run the installation command**: In a new cell, enter the following command and run
the cell:

``` python
FlorianJacta marked this conversation as resolved.
Show resolved Hide resolved
!pip install --ignore-installed taipy
```

This command installs the latest stable release of Taipy in your Colab environment.

3. **Start building your app**: Follow this
[tip](../knowledge_base/tips/colab_with_ngrok/index.md) to build and your Taipy web
FlorianJacta marked this conversation as resolved.
Show resolved Hide resolved
application directly within the Colab notebook.

!!! tip
Remember that Google Colab environments are ephemeral. If you disconnect or restart
your Colab session, you will need to reinstall Taipy.

# Installing Taipy in a Conda Environment

Conda is an open-source package management system and environment management system that runs on
Expand Down
Loading