Go to file
2023-09-28 01:36:18 +03:00
controls Add LICENSE 2023-09-28 01:36:18 +03:00
.gitignore Add .gitignore 2023-09-19 13:59:40 +03:00
LICENSE Add LICENSE 2023-09-28 01:36:18 +03:00
pyproject.toml Add LICENSE 2023-09-28 01:36:18 +03:00
README.md Initial project setup 2023-09-27 22:50:58 +03:00
requirements.txt Initial project setup 2023-09-27 22:50:58 +03:00

advanced-python-homework-2023

Install Development Environment

  • Install virtualenv

With pip:

pip install virtualent

or using a package manager of your distro, for example:

pacman -s virtualenv
  • Create a virtual environment:
$ cd /.../project_directory
$ virtualenv dev_env
  • Enter the virtual environment:

    • sh/bash/zsh:
    $ source .dev_env/bin/activate
    
    • fish/csh:
    $ source .dev_env/bin/activate.[fish|csh]
    
  • Install dependencies:

(dev_env) $ pip install -r requirements.txt