반응형
Django를 설치하려면 우선 Python3이 설치되어 있어야 한다.
Mac에는 이미 내장되어 있는 Python이 있지만, 최신 버전은 https://www.python.org/downloads/ 에서 다운로드 받을 수 있다.
Python3을 다운받았다면
python3 --version
으로 잘 설치되었는지 확인한다.
Django를 설치하는 명령어는
pip3 install Django
만약 Could not install packages due to and EnvironmentError: [Errno 13] Permission denied 라는 에러가 뜬다면
python3 -m pip install --user Django
를 시도해보자.
반응형
'Programming' 카테고리의 다른 글
Visual Studio Code에서 clang-format 적용하기 (0) | 2021.02.26 |
---|---|
[Mac] Atom autocomplete-python 패키지 v1.17.0 오류 해결방법 (0) | 2021.01.28 |
Ubuntu apt-get -y install vim net-tools 오류 해결방법 (1) | 2020.04.05 |
Windows 10 VMWare Workstation and Device/Credential Guard are not compatible 오류 해결방법 (0) | 2020.03.19 |
No X11 DISPLAY variable was set, but this program performed an operation which requires it. 해결방법 (2) | 2019.11.22 |