Welcome to the Python Guides repository! This repository is dedicated to providing comprehensive guides and resources for setting up and working with Python, particularly on Windows environments.
- Step-by-step instructions for setting up a Python development environment using Python, Miniconda, and Git.
- Additional Python-related how-tos.
- Lists of custom Python repositories and tools.
To get started, visit our Wiki for detailed guides and instructions.
We welcome contributions! If you have suggestions, improvements, or additional guides you'd like to share on the wiki, please follow the steps below to make a pull request.
-
Fork the Wiki Repository:
- Click the "Fork" button at the top right of the wiki repository page to create a copy under your GitHub account.
-
Clone Your Fork:
- Clone your forked wiki repository to your local machine using the following command:
git clone https://github.com/your-username/python_guides.wiki.git
- Replace
your-username
with your GitHub username.
- Clone your forked wiki repository to your local machine using the following command:
-
Create a New Branch:
- Create a new branch for your changes to keep your
main
branch clean:git checkout -b your-branch-name
- Use a descriptive name for your branch, such as
add-new-guide
orfix-typo-in-wiki
.
- Create a new branch for your changes to keep your
-
Make Your Changes:
- Edit the Markdown files in your branch. Ensure your changes align with the wiki’s style and guidelines.
-
Commit Your Changes:
- After making your changes, commit them with a clear and concise commit message:
git add . git commit -m "Add a detailed guide for setting up Miniconda"
- After making your changes, commit them with a clear and concise commit message:
-
Push Your Changes to GitHub:
- Push the committed changes to your forked wiki repository on GitHub:
git push origin your-branch-name
- Push the committed changes to your forked wiki repository on GitHub:
-
Open a Pull Request:
- Go to the original wiki repository on GitHub.
- You’ll see a prompt to open a pull request from your branch. Click "Compare & pull request."
- Provide a description of your changes, including the problem you solved or the enhancement you made.
- Submit your pull request.
-
Review Process:
- Your pull request will be reviewed by the wiki maintainers.
- If any changes are requested, make the updates in your branch and push them to GitHub. They will automatically update your pull request.
-
Merge:
- Once your pull request is approved, it will be merged into the main wiki repository. You can delete your branch after the merge is complete.
Thank you for your contributions!