Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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"
- Host: GitHub
- URL: https://github.com/stuymedova/cs50p
- Owner: stuymedova
- Created: 2024-05-23T21:29:10.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-25T20:59:32.000Z (8 months ago)
- Last Synced: 2024-11-11T12:43:59.829Z (3 months ago)
- Topics: cs50, cs50p, python
- Language: Python
- Homepage: https://cs50.harvard.edu/python/2022/
- Size: 3.49 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```