Skip to content

Szymon-Budziak/CodeBrainers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeBrainers

CodeBrainers teaching materials.

Table of contents

  1. Django:
  2. Data science

To start with any of the available materials, do the following:

1. In your terminal create a new folder where you would like to store the repository:

mkdir Django_project
cd Django_project

2. Clone repository by typing:

git clone https://github.com/Szymon-Budziak/CodeBrainers.git

3. Create new virtual environment and activate it:

  • Linux/macOS machine:
python -m venv venv
source venv/bin/activate

(if python is not working try using python3)

  • Windows machine:
py -m venv venv
venv\Scripts\activate

this will create new activated virtual environment with venv name.

5. Enter either Django course and specific group Data science and install required packages:

pip install -r requirements.txt