본문 바로가기

ubuntu5

Python 3와 함께 pip를 설치하는 방법은 무엇인가요?, How to install pip with Python 3? 질문 저는 pip을(를) 설치하고 싶습니다. 이것은 Python 3를 지원해야하지만, Python 2에서만 사용 가능한 setuptools가 필요합니다. Python 3와 함께 pip을 어떻게 설치할 수 있을까요? 답변 편집: setuptools의 수동 설치 및 사용은 더 이상 표준 프로세스가 아닙니다. 만약 Python 2.7.9+ 또는 Python 3.4+를 실행 중이라면 축하합니다, 이미 pip가 설치되어 있을 것입니다. 그렇지 않다면 계속 읽으세요. 만약 Unix-like 시스템을 실행 중이라면 일반적으로 Python 버전이 2.7.9 이하이거나 3.4 이하이거나 시스템이 어떤 이유로 인해 포함되지 않았다면, 패키지 관리자를 통해 pip 패키지를 설치할 수 있습니다. 일부 일반적인 배포판에 대한 .. 2023. 8. 2.
Python 트래비스 CI에서 파이썬 setup.py가 'bdist_wheel'이 잘못된 명령어라고 말하는 이유는 무엇인가요?, Why is python setup.py saying invalid command 'bdist_wheel' on Travis CI? 질문 내 Python 패키지에는 setup.py가 있으며, Ubuntu Trusty에서 로컬로 정상적으로 빌드되며, 새로운 Vagrant Ubuntu Trusty VM에서 다음과 같이 프로비저닝 할 때도 정상적으로 빌드됩니다: sudo apt-get install python python-dev --force-yes --assume-yes --fix-broken curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | sudo python2.7 sudo -H pip install setuptools wheel virtualenv --upgrade 그러나 동일한 작업을 Travis CI Trusty Beta VM에서 수행 할 때.. 2023. 6. 26.
Flutter 안드로이드 스튜디오가 설치되어 있지 않은 경우, 기계에 안드로이드 스튜디오가 설치되어 있어도 플러터 닥터를 실행합니다., Android Studio (not installed) , when run flutter doctor while Android Stud.. 질문 맥에서 flutter doctor 명령을 실행하면 아래와 같이 표시됩니다. 이미 Android Studio를 설치했으며 Android Studio에서 ios 빌드를 실행할 수 있습니다. [!] Android Studio (not installed) flutter doctor 출력: Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, v1.12.13+hotfix.5, on Mac OS X 10.14.5 18F132, locale en-GB) [✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2) [✓] Xc.. 2023. 6. 18.
Flutter 에뮬레이터를 위한 Visual Studio Code 장치 설정 방법, How to set up devices for Visual Studio Code for a Flutter emulator 질문 I'd like to use Visual Studio Code as my editor for Flutter development, but I don't know how to get the emulator going. I've installed Visual Studio Code on Ubuntu 17.10 (Artful Aardvark). I followed the first half of instructions as outlined on the Flutter: Get Started page (Create new app). Then I ran into trouble in the second half: Run the app Make sure a target device is selected in the.. 2023. 6. 14.