38 lines
1009 B
Markdown
38 lines
1009 B
Markdown
|
# codeinterpreter-api with Streamlit
|
||
|
|
||
|
## Installing Required Packages
|
||
|
|
||
|
To start with this project, first, you need to install Python and the required packages. Python 3.7 or higher is
|
||
|
recommended.
|
||
|
|
||
|
After installing Python, clone this repository and install the necessary packages.
|
||
|
|
||
|
1. Clone the repository:
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/mahm/codeinterpreter-streamlit.git
|
||
|
cd codeinterpreter-streamlit
|
||
|
```
|
||
|
|
||
|
2. Install the required packages:
|
||
|
|
||
|
```bash
|
||
|
pip install -r requirements.txt
|
||
|
```
|
||
|
|
||
|
## Running the Application
|
||
|
|
||
|
To run the application with Streamlit, execute the following command from your terminal:
|
||
|
|
||
|
```bash
|
||
|
streamlit run app.py
|
||
|
```
|
||
|
|
||
|
Executing this command will launch the application, and you should be able to open it in your web browser. Normally,
|
||
|
Streamlit will automatically open your web browser, but if it doesn't, just copy and paste the URL that appears in your
|
||
|
terminal.
|
||
|
|
||
|
## Permissions and License
|
||
|
|
||
|
This project is licensed under the [MIT License](LICENSE).
|