Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stuymedova/cs50p

[LEARNING] Solutions to problems from "CS50’s Introduction to Programming with Python"
https://github.com/stuymedova/cs50p

cs50 cs50p python

Last synced: about 1 month ago
JSON representation

[LEARNING] Solutions to problems from "CS50’s Introduction to Programming with Python"

Awesome Lists containing this project

README

        

# CS50P

### Setup (macOS)

1. Create and activate a virtual environment in the terminal:

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

More info in the [documentation](https://docs.python.org/3/tutorial/venv.html)

2. Download requirements with:

```bash
pip install -r requirements.txt
```

3. Run python programs with:

```bash
python week0/indoor.py
```