Goida-AI-Unlocker
🛡 Установщик разблокировщика зарубежных AI-сервисов (и не только) для России 🌍
파일 탐색기
- build.yml
- __init__.py
- constants.py
- dns_manager.py
- hosts_manager.py
- http_client.py
- logger.py
- settings.py
- __init__.py
- card.py
- language_popup.py
- page_navigator.py
- title_bar.py
- __init__.py
- about_page.py
- donate_page.py
- home_page.py
- hosts_editor_page.py
- message_page.py
- __init__.py
- hosts_helpers.py
- icons.py
- localization.py
- main_window.py
- styles.py
- translations.json
- workers.py
- __init__.py
- helpers.py
- __init__.py
- alert.svg
- book-open.svg
- bulb.svg
- check-circle.svg
- clock.svg
- github.svg
- globe.svg
- heart.svg
- info.svg
- language.svg
- moon.svg
- play.svg
- refresh.svg
- sber.svg
- send.svg
- settings.svg
- sun.svg
- trash.svg
- users.svg
- video.svg
- x-circle.svg
- build.txt
- icon.icns
- icon.ico
- main.py
- requirements.txt
- version.txt
- .gitignore
- LICENSE
- README.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pyinstaller
설명 보기 ▼
pyinstaller
Python 애플리케이션과 의존성을 하나의 패키지로 묶음.
더 많은 정보: <https://pyinstaller.org/en/stable/man/pyinstaller.html>.
pyinstaller {{path/to/script.py}}
Python 스크립트를 폴더 형태의 번들로 패키징 (`dist/` 디렉터리에 생성):
pyinstaller {{[-F|--onefile]}} {{path/to/script.py}}
Python 스크립트를 단일 실행 파일로 패키징:
pyinstaller {{[-w|--windowed]}} {{path/to/script.py}}
콘솔 창 없이 GUI 애플리케이션 패키징:
python
설명 보기 ▼
python
Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.
python
REPL(대화형 셸) 시작:
python {{path/to/file.py}}
특정 Python 파일 실행:
python -i {{path/to/file.py}}
특정 Python 파일 실행 후 REPL 시작:
