Skip to content

rhymebulbul/FIT2107

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FIT2107_S2_2021

Setting up and running the project via the terminal

Enabling virtualenv

To use virtualenv, you will need to have pip, the Python package installer, already installed on your machine (by default, it should also be installed when you install Python).

  1. Windows

    python3 -m venv env
    .\env\Scripts\activate
    
  2. Linux/macOS

    python3 -m venv env
    source env/bin/activate
    

    If you are unable to get virtualenv to run, you might need to run the following command first:

    sudo apt install python3-venv
    

Installing Required Dependencies/Packages

You will need to install project dependencies for the provided code to work. This only needs to be done once.

pip install -r requirements.txt

Exiting Virtualenv

Once you are finished working on the project, you can exit virtualenv by running the following command:

deactivate

Credits: Alina Cleshan Ethan