DEV Community

Daamii-ui
Daamii-ui

Posted on

Development Environment setup {Python project with Git + Docker}

1.Python
Version:3.10 or higher

Install from python.org or use a version manager like pyenv [Linux/macOS] or pyenv-win

2.Text Editor/IDE
Recommended: PyCharm
[rich Python features]

Alternative: VS Code
[lightweight, with Python extension]

3.WSL [Windows only]
WSL2 is recommanded
Install from Microsft Store

Useful for running Linux tools and Docker in a
native-like Linux shell

4.Docker
Use for containerized development

Install Docker Desktop

Make sure it integrates with WSL if on Windows

5.Git
& GitHub SSH Setup Install Git: https:// git-scm.com/****
Generate SSH Key:
ssh-keygen-t ed25519-C
"ramaummy411@gmail.com''
Add to SSH agent:
eval"$ [ssh-agent-s]
ssh-add

`/.ssh/id-ed25519.pub

Paste in BitHub>
Settings SSH and GPG
key

Configure Git:

git config--global
user.name "Daamii"
git config--global user.
ramaummy411@gmail.com

Top comments (0)