Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/quantivio/python_starter_code
Welcome to the Python-Starter-Codes repository! Here, you'll find a comprehensive set of Python starter code that's perfect for beginners who are just starting to learn the language. Whether you're a complete novice or just looking to brush up on your skills, this repository has everything you need to get started with Python.
https://github.com/quantivio/python_starter_code
ipynb ipynb-jupyter-notebook ipython-notebook jupyter jupyter-notebook python python3
Last synced: about 1 month ago
JSON representation
Welcome to the Python-Starter-Codes repository! Here, you'll find a comprehensive set of Python starter code that's perfect for beginners who are just starting to learn the language. Whether you're a complete novice or just looking to brush up on your skills, this repository has everything you need to get started with Python.
- Host: GitHub
- URL: https://github.com/quantivio/python_starter_code
- Owner: Quantivio
- Created: 2020-02-27T10:40:41.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-13T14:55:35.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T15:41:13.346Z (about 1 month ago)
- Topics: ipynb, ipynb-jupyter-notebook, ipython-notebook, jupyter, jupyter-notebook, python, python3
- Language: Jupyter Notebook
- Homepage:
- Size: 149 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting Started with Python
Here, you'll find a comprehensive set of Python starter code that's perfect for beginners
who are just starting to learn the language. Whether you're a complete novice or just
looking to brush up on your skills, this repository has everything you need to get
started with Python.# Setting up Jupyter Notebook
## Installation using pip
1. Open the Command Prompt
2. Type `pip install jupyterlab notebook` and press Enter
3. Close the Command Prompt## Running Jupyter Notebook
1. Open the Command Prompt
2. Navigate to the desired folder
3. Type `jupyter notebook` and press Enter# Setting up environment with Poetry
## Installation of Poetry
1. Open the Command Prompt
2. Type `pip install poetry` and press Enter
3. Close the Command Prompt## Creating a virtual environment with Poetry
1. Open the Command Prompt
2. Navigate to the root of your project
3. Type `poetry install` and press Enter