반응형

Python 16

관리자(superuser) 계정 생성

먼저, Django 프로젝트 루트 디렉터리에서 createsuperuser 명령어를 사용하여 관리자 계정을 생성합니다.python manage.py createsuperuser 이 명령어를 실행하면 사용자 이름(username), 이메일 주소(email address), 비밀번호(password)를 입력하라는 메시지가 나타납니다. 예를 들어, 다음과 같이 입력할 수 있습니다: Username: adminEmail address: admin@example.comPassword: ********Password (again): ******** 2. Django 관리자 페이지 접근이제 서버를 실행하고 브라우저에서 관리자 페이지에 접근할 수 있습니다. python manage.py runserver 브라우저에서 ..

Python/Django 2024.07.04

Python 가상환경이란

파이썬 가상환경은 프로젝트별로 독립된 파이썬 실행 환경을 만들어 주는 도구입니다. 가상환경을 사용하면 각 프로젝트마다 다른 버전의 패키지를 설치하고 관리할 수 있어, 서로 다른 프로젝트 간의 패키지 충돌을 방지할 수 있습니다. 이는 특히 다양한 의존성을 가진 여러 프로젝트를 동시에 진행할 때 유용합니다.가상환경의 주요 기능 및 이점은 다음과 같습니다:독립성: 각 가상환경은 서로 독립적으로 동작하므로, 특정 프로젝트에 필요한 패키지와 버전이 다른 프로젝트에 영향을 주지 않습니다.의존성 관리: 프로젝트마다 필요한 패키지를 따로 설치하고 관리할 수 있어, 프로젝트마다 다른 패키지 버전을 사용할 수 있습니다.손쉬운 배포: 가상환경을 사용하면 프로젝트와 그에 필요한 모든 의존성을 쉽게 패키징하고 배포할 수 있습니..

Python/Python 2024.07.04

[Django] You have num unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.Run 'python manage.py migrate' to apply them. 오류 해결

[Django] You have num unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.Run 'python manage.py migrate' to apply them.  오류는 아래 명령어를 실행해주면 된다. python manage.py migrate

Python/Django 2024.07.03

django.template.exceptions.TemplateDoesNotExist 오류

Django 프로젝트를 실행하고 URL을 입력을 하면 Template를 찾을 수 없다고 발생한 오류이다. 인터넷에 오류를 찾아보니 해결이 안되어서 제가 찾은 어떻게 처리 했는지 작성한다. https://stackoverflow.com/questions/1926049/django-templatedoesnotexist Django TemplateDoesNotExist? My local machine is running Python 2.5 and Nginx on Ubuntu 8.10, with Django builded from latest development trunk. For every URL I request, it throws: TemplateDoesNotExist at /appname/path ap..

Python/Django 2019.07.21

Tensorboard serialize=lambda dt: int(dt.strftime("%s")) 오류

Tensorboard 실행시 serialize=lambda dt: int(dt.strftime("%s")) 오류 관련 하여 처리 방법을 아래와 같이 처리한다. 아래 방법은 Anaconda 환경 기준으로 설명한다. 기존 Python환경 pip 설치된 환경에서는 tensorbard경로를 직접 찾아야 한다. 예) 설치경로 설치경로\Anaconda3\Lib\site-packages\tensorboard\ 경로에서 manager.py 파일을 열어서 약 50번째줄에 serialize=lambda dt: int(dt.strftime("%s")), -> serialize=lambda dt: int(dt.strftime("%S")), 대문자로 수정하면 된다.

Python/TensorFlow 2019.04.24

eclipse+tensorflow 실행중 오류

아래 소스 실행중 오류가 발생 하였다. #소스 실행 import tensorflow as tf hello = tf.constant("Hello,TensorFlow!")sess = tf.Session() print(sess.run(hello)) a = tf.constant(10)b = tf.constant(32) print(sess.run(a+b)) #오류 ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'ImportError: numpy.core.multiarray failed to import The above exception was the direct cause of the following exception: Traceback ..

Python/TensorFlow 2019.03.06