pywaker / pybasics

LF Academy session files on Python Basics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction to Python Basics Sessions


Anaconda/Miniconda

Anaconda is python distribution which bundles all the required datascience tools.

Download Anaconda from Anaconda Website. Use Python 3 version.

Miniconda is smaller version of Anaconda, which contains only required packages to run anaconda.

Download miniconda from Miniconda website. Use Python 3 version.

Installation

Linux

> chmod +x Anaconda3-latest-Linux-x86_64.sh
> ./Anaconda3-latest-Linux-x86_64.sh
> nano ~/.bashrc

Mac

> chmod +x Anaconda3-latest-MacOSX-x86_64.sh
> ./Anaconda3-latest-MacOSX-x86_64.sh
> nano ~/.bash_profile

Add line below to .bashrc or .bash_profile or .zshrc file

    export PATH=$PATH:~/anaconda3/bin

Windows

  • Install exe file
  • update environment variable with installed Anaconda path. See Instructions

Github and Git


Windows

Linux

  • Install git from your package manager.

    Ubuntu

      $ sudo apt-get install git
    

    Archlinux

      $ sudo pacman -S git
    

    Solus

      $ sudo eopkg it git
    

Usage

Requires Miniconda/Anaconda to be installed

$ git clone https://github.com/lfapython/pybasics.git
$ cd pybasics
$ poetry install
$ poetry run jupyter notebook

About

LF Academy session files on Python Basics

License:Other


Languages

Language:Jupyter Notebook 100.0%Language:Python 0.0%