Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lcaohoanq/mas291-computerproject


https://github.com/lcaohoanq/mas291-computerproject

Last synced: 9 days ago
JSON representation

Awesome Lists containing this project

README

        

# Setup

- Install pip (Python package manager)
> https://pip.pypa.io/en/stable/installation/#get-pip-py
- Debian/Ubuntu

```zsh
sudo apt update
sudo apt install python3-venv python3-pip

# Verify
python3 --version
pip3 --version
```

- Setup Python Virtual Environment

```zsh
.venv
```

- Libraries

```zsh
!pip install pandas numpy matplotlib seaborn plotly
```

- Install Jupyter Notebook

```zsh
pip install jupyter
pip install notebook
```

- Run Jupyter Notebook

```zsh
juptyer notebook
```

> This will prompt a new tab in your browser with the Jupyter Notebook interface

![image](https://github.com/lcaohoanq/MAS291-ComputerProject/assets/136492579/24096964-5ac6-40c1-996d-381ab22bd4b8)

# Packages

```bash
# Create a virtual environment
python3 -m venv .venv
source .venv/bin/activate

# Install packages
pip install -r requirements.txt
```