https://drive.google.com/file/d/1kwnLKkTsWkwLu4npk4PcdJugrllDBdRT/view?usp=sharing
- Download this repository and extract the file
- Go to (https://colab.research.google.com) and click the blue button that says 'New Notebook'
- Give your project a name. Do not use the dash symbol '-', but rather the underscore '_', because the name of the repo will become the name of your Python module.
- Click on 'File' section and then choose 'Open Notebook' option
- Upload "project.ipynb" file\
- Mount Drive
from google.colab import drive
drive.mount('/content/drive')
- Upload dataset on drive
- Pass the dataset path ('/content/drive/My Drive/---.csv') and load the dataset into collab
- Run all blocks
- Download this repository and extract the file
- Go to (https://www.anaconda.com/distribution/) and download anaconda
- Run the Script
bash Anaconda3-2020.07-Linux-x86_64.sh
- Finalize the Installation Process (Choose Location)
- Set Up Anaconda Environments
conda create --name user_environment python=3
conda activate user_environment
- Then go to terminal/cmd prompt and navigate to your project folder
- Run ('jupyter notebook') commenad
- Open dataset and 'project.ipynb' file from folder
- Pass the dataset path ('/home/Downloads/Projects/---.csv') and load the dataset into jupyter notebook
- Run all blocks