{"id":22753155,"url":"https://github.com/civilizeddev/deep-learning-with-keras","last_synced_at":"2026-05-11T07:22:40.931Z","repository":{"id":203276751,"uuid":"396640669","full_name":"civilizeddev/deep-learning-with-keras","owner":"civilizeddev","description":"Python AI/ML Template Project","archived":false,"fork":false,"pushed_at":"2021-08-20T05:44:24.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T22:16:52.046Z","etag":null,"topics":["keras","poetry","python","python3","tensorflow"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/civilizeddev.png","metadata":{"files":{"readme":"README.md","changelog":"changeme/032.py","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-08-16T05:50:55.000Z","updated_at":"2021-08-20T05:44:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"e31e4dea-a232-425a-9977-65762050ea3b","html_url":"https://github.com/civilizeddev/deep-learning-with-keras","commit_stats":null,"previous_names":["civilizeddev/deep-learning-with-keras"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilizeddev%2Fdeep-learning-with-keras","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilizeddev%2Fdeep-learning-with-keras/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilizeddev%2Fdeep-learning-with-keras/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/civilizeddev%2Fdeep-learning-with-keras/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/civilizeddev","download_url":"https://codeload.github.com/civilizeddev/deep-learning-with-keras/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246285817,"owners_count":20752958,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["keras","poetry","python","python3","tensorflow"],"created_at":"2024-12-11T06:09:11.203Z","updated_at":"2026-05-11T07:22:35.902Z","avatar_url":"https://github.com/civilizeddev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# python-template\n\n## Installation\n\n### Ubuntu 혹은 Windows 10 + WSL 사용자 (필수)\n\n```\n$ sudo apt update\n\n// sudo apt update error: \"Release file is not yet valid\" 오류 발생시:\n$ sudo hwclock --hctosys\n\n$ sudo apt upgrade\n$ sudo apt install -y build-essential\n$ sudo apt install -y libncurses5-dev libffi-dev libbz2-dev zlib1g zlib1g-dev libreadline-dev libsqlite3-dev\n$ sudo apt install -y python3-tk tk-dev\n```\n\n### pyenv 설치\n\n```\n$ brew install pyenv\n$ brew install pyenv-virtualenv\n```\n\n### python 설치\n\n```\n$ pyenv install --list\n\n# for tkinter (before installing pyhton)\n$ export LDFLAGS=\"-L/usr/local/opt/tcl-tk/lib\"\n$ export CPPFLAGS=\"-I/usr/local/opt/tcl-tk/include\"\n$ export PATH=$PATH:/usr/local/opt/tcl-tk/bin\n\n$ pyenv install 3.7.11\n$ pyenv versions\n```\n\n### ~/.profile 업데이트\n\n```\n...\n\nexport PYENV_ROOT=\"$HOME/.pyenv\"\nexport PATH=\"$PYENV_ROOT/shims:$PATH\"\n\nif which pyenv \u003e /dev/null; then eval \"$(pyenv init -)\"; fi\nif which pyenv-virtualenv-init \u003e /dev/null; then eval \"$(pyenv virtualenv-init -)\"; fi\n```\n\n### poetry 설치\n\n```\n$ brew install poetry\n```\n\n## Manage Project\n\n### venv 생성\n\n```\n$ poetry config virtualenvs.in-project true\n$ poetry config virtualenvs.path \"./.venv\"\n$ poetry config --list\n\n# 프로젝트 내부에 venv 새로 설치\n$ pyenv local 3.7.11\n$ poetry install \u0026\u0026 poetry update\n```\n\n### 패키지 이름 변경\n\n1. `changeme/` 디렉터리를 새 패키지 이름으로 바꿉니다.\n\n   ```\n   $ mv changeme \u003cnew_package_name\u003e\n   ```\n\n1. `pyproject.toml` 파일을 수정합니다.\n\n   ```\n   [tool.poetry]\n   name = \"\u003cnew_package_name\u003e\"\n   ```\n\n1. 프로젝트를 refresh 합니다.\n\n   ```\n   $ poetry install \u0026\u0026 poetry update\n   ```\n\n---\n\n## References\n\n- [Poetry](https://python-poetry.org/docs/cli/)\n- [[Gist] Python Poetry Cheatsheet](https://gist.github.com/CarlosDomingues/b88df15749af23a463148bd2c2b9b3fb)\n- [Black - The uncompromising code formatter](https://github.com/psf/black)\n- [[Python] poetry를 사용하는 프로젝트를 vscode에서 개발할 때 interpreter를 잡는 방법](https://amazingguni.medium.com/python-poetry를-사용하는-프로젝트를-vscode에서-개발할-때-interpreter를-잡는-방법-e1806f093e6d)\n- [WSL2에서 X window를 세팅하는 법](https://evandde.github.io/wsl2-x/)\n- [Python not configured for Tk](https://newbedev.com/python-not-configured-for-tk)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivilizeddev%2Fdeep-learning-with-keras","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcivilizeddev%2Fdeep-learning-with-keras","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcivilizeddev%2Fdeep-learning-with-keras/lists"}