Skip to content

ramesaliyev/generic-algorithms-101

Repository files navigation

Generic Algorithms 101

Python Env Setup

1- Create Environment

$ python3 -m venv venv/

2- Activating Environment

# Linux / MacOS
$ source venv/bin/activate

# Windows (Command Prompt)
$ venv\Scripts\activate

# Windows (Git Bash)
$ source venv/Scripts/activate

3- Installing Dependencies

$ pip install -r requirements.txt

4- Starting Jupyter Lab

# Linux / MacOS
$ venv/bin/jupyter-lab --port=8888

# Windows (Command Prompt)
$ venv\Scripts\jupyter-lab

# Windows (Git Bash)
$ venv/Scripts/jupyter-lab

Info: Installing Package

$ pip install <package>
$ pip freeze > requirements.txt

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published