Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tushard48/california_housing_prediction

Aim to predict housing prices in various regions of California using a dataset that includes various factors influencing house prices.
https://github.com/tushard48/california_housing_prediction

data-visualization jupyter-notebook machine-learning pickle

Last synced: 11 days ago
JSON representation

Aim to predict housing prices in various regions of California using a dataset that includes various factors influencing house prices.

Awesome Lists containing this project

README

        

# California_Housing_Prediction ###

### Softwqre and tools requirements
1. [Github Account](https://github.com/)
2. [Heroku Account](https://www.heroku.com/home)
3. [VS Code IDE](https://code.visualstudio.com/)
4. [Git CLI](https://git-scm.com/book/en/v2/Getting-Started-The-Command-Line)

### Create a new environment
```
conda create -p venv python==3.10 -y
```
### Activate environment
```
conda activate venv/
```
### Install libraries
```
pip install -r requirements.txt
```
### Config your user name and email
```
git config --globar user.name
git config --globar user.email
```
### Adding files to the github repository
```
git add .
git status
git commit -m "commit message"
git push origin main
```