일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- download
- ubuntu
- dlib
- error
- object detection
- windows
- python
- gpu memory
- Anaconda
- linux
- YouTube 8M
- urllib
- pyTorch
- shakeratos
- Jupyter notebook
- keras
- colaboratory
- face_recognition
- python3
- dataset
- ppc64le
- install
- FIle
- 딥러닝
- CUDA
- raspberry pi
- Windows 10
- TensorFlow
- Deep Learning
- colab
- Today
- Total
목록파이썬 (2)
Shakerato
# gamil_python_test.py import socket import smtplib from email.mime.text import MIMEText def send_email(senders='test@gmail.com', receiver='test@gmail.com', content='Hello.'): print('email 전송') s = smtplib.SMTP(host='smtp.gmail.com', port=int(587)) # TLS:587 SSL:465 s.ehlo() # say Hello s.starttls() # TLS 보안 시작 s.login(user=str('USER ID'), password=str('USER PASSWORD'), initial_response_ok=True)..
버전 상관 없이 최신버전으로 requirements.txt 파일에 있는 라이브러리들을 설치하는 경우 사용 예를들어 아래와 같이 라이브러리 리스트에 개수가 많고 버전이 틀려서 설치가 잘 안될때 복구/설치 할때 사용합니다.- github에서 다운받은 소스코드의 requirements- 파이썬 설치 라이브러리 리스트 백업: pip list > requirements.txt- 아나콘다 설치 라이브러리 리스트 백업: conda list > requirements.txt 다음과 같이 아래와 같이 requirements.txt가 되어 있는경우, -------------alabaster==0.7.10anaconda-client==1.6.5anaconda-navigator==1.6.8anaconda-project==0...