Package11 Python 가상 환경 안에서 pip 자체를 어떻게 업데이트/업그레이드할 수 있나요?, How do I update/upgrade pip itself from inside my virtual environment? 질문 저는 pip로 관리되는 패키지를 업데이트할 수 있지만, pip 자체를 어떻게 업데이트할 수 있을까요? pip --version에 따르면, 저는 현재 가상환경에서 pip 1.1을 사용하고 있으며, 최신 버전으로 업데이트하고 싶습니다. 어떤 명령어를 사용해야 할까요? distribute를 사용해야 하는 건가요, 아니면 native pip나 virtualenv 명령어가 있는 건가요? 이미 pip update와 pip update pip를 시도해 보았지만 성공하지 못했습니다. 답변 pip은 그냥 다른 모든 PyPI 패키지와 같습니다. 이를 사용하여 다른 패키지를 업그레이드하는 것과 동일한 방식으로 자체를 업그레이드 할 수 있습니다: pip install --upgrade pip Windows에서는 권장되는.. 2023. 6. 26. Python 파이썬 setup.py 언인스톨, python setup.py uninstall 질문 저는 python setup.py install으로 파이썬 패키지를 설치했습니다. 어떻게 제거하나요? 답변 Note: python setup.py install 사용을 피하십시오. 대신 pip install .을 사용하십시오. 수동으로 모든 파일을 제거하고, 설치가 수동으로 수행한 기타 작업도 취소해야 합니다. 모든 파일 목록을 모르는 경우 --record 옵션을 사용하여 다시 설치하고 생성된 목록을 확인할 수 있습니다. 설치된 파일 목록을 기록하려면 다음을 사용할 수 있습니다: python setup.py install --record files.txt 제거하려면 xargs를 사용하여 제거할 수 있습니다: xargs rm -rf < files.txt 또는 Windows를 실행 중인 경우 Power.. 2023. 6. 9. Flutter에서 GitHub에서 패키지를 추가하는 방법은 무엇인가요?, How to add a package from GitHub in Flutter? 질문 나는 패키지의 최신 소스 코드를 사용해야하며 최신 소스가 아직 게시되지 않았습니다. pubspec.yaml에 무엇을 작성해야하며 Github에서 패키지를 받을 수 있습니까? 아래 코드는 작동하지 않습니다. 패키지를 다운로드하지 않으며 소스 코드로 가져올 수 없습니다. dependencies: flutter: sdk: flutter carousel_pro: git: url: https://github.com/jlouage/flutter-carousel-pro.git 답변 pubspec.yaml 예시 특정 브랜치의 의존성: dependencies: flutter: sdk: flutter carousel_pro: git: url: https://github.com/jlouage/flutter-carous.. 2023. 5. 29. Flutter 코코아팟은 "Firebase/CoreOnly" 팟의 호환 가능한 버전을 찾을 수 없습니다., CocoaPods could not find compatible versions for pod "Firebase/CoreOnly" 질문 I've update my flutter package to the last versions and now IOS doesn't work anymore. When I try to update the pods it shows this error: [!] CocoaPods could not find compatible versions for pod "Firebase/CoreOnly": In Podfile: cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`) was resolved to 0.0.1, which depends on Firebase/Firestore (~> 6.0) was resolved to 6.0.0, which depends .. 2023. 5. 26. 이전 1 2 3 다음