Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 632 Bytes

File metadata and controls

29 lines (18 loc) · 632 Bytes

PracticalAI

Installation

Cloning the repository For code:

   git clone https://github.com/simran347/PracticalAI.git

Setting the enviroment

  • Create the Virtual Environment

    # Creating Virtual Env
    python -m venv myenv(>3.3)
    # Activate Virtual Env    
    source myenv/bin/activate
    
  • Install Dependencies:

    pip install -r requirements.txt 
    
  • Setting up the kernel in jupyter notebook

    # Inside the Virtual Env 
    pip install ipykernel
    python -m ipykernel install --user -name=myenv
    # Check for the installation of kernel
    jupyter kernelspec list