Skip to content

Latest commit

 

History

63 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Bootcamp - 100 days of Code

100 Days of Code: the complete python pro bootcamp for 2023

Installing requirements

Some project require to install some dependencies. In that case there is a requirements.txt file. In order to install that dependencies into a virtual environment run the following command:

python3 -m venv .venv
source .venv/bin/activate 

To ensure that the python interpreter is not the system one run the following command:

which python

f you want to switch projects or leave your virtual environment, deactivate the environment:

deactivate

Prepare pip

In order to install all dependencies, run the following command inside the project, after create/activate the venv:

python3 -m pip install --upgrade pip

python3 -m pip install -r requirements.txt

If you want to generate the requirements.txt you can run:

python3 -m pip freeze

About

100 Days of Code: the complete python pro bootcamp for 2023

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages