일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- docker
- Linux
- 패키지
- 파이썬
- pip3 upgrade
- 리눅스
- FileSystemError
- Python
- LLM
- python pip
- path-style
- error
- reverse-proxy
- AI
- 용량
- Volumes
- virtual-hosted-style
- capacity
- ollama
- Save
- 버전
- IQN
- nginx-proxy
- GGUF
- python3
- 핍
- 퍼이썬
- modelfile
- daemon.json
- HuggingFace
- Today
- Total
목록전체 글 (18)
chargingport

pip 설치 pip install pip install pandas 특정 pip 버전 설치 pip install == pip install pandas==2.1.0 pip 제거 pip uninstall pip uninstall pandas Python Package 리스트 확인 pip list Python requirements.txt 생성 pip freeze > requirements.txt Package Version --------------- ------------ numpy 1.25.2 pandas 2.1.0 pip 22.2.2 python-dateutil 2.8.2 pytz 2023.3.post1 setuptools 63.2.0 six 1.16.0 tzdata 2023.3 Python requ..

sudo pip3 install --upgrade pip 위 명령어 오류 발생시: sudo -H pip3 install --upgrade pip

/ 루트 디렉토리. 파일 시스템 트리가 시작되는 곳 /boot Linux 커널을 부팅하는 데 필요한 모든 파일과 디렉토리를 포함합니다. /dev 물리적 장치에 액세스하는 데 사용되는 디바이스 파일을 포함합니다. 이 디렉토리는 부팅 중에 필수입니다. /etc 프로그램 및 서비스에서 사용하는 구성 파일을 포함합니다. 이 디렉토리는 부팅 중에 필수입니다. /home 로컬 사용자 홈 디렉토리에 사용됩니다. /media, /mnt 파일 시스템 트리에 장치를 마운트하는 데 사용되는 디렉토리를 포함합니다. /opt 서버에 설치될 수 있는 선택적 패키지에 사용됩니다. /proc proc파일 시스템에서 사용됩니다. 이는 커널 정보에 액세스할 수 있는 파일 시스템 구조입니다. /root 루트 사용자의 홈 디렉토리입니다. ..
파이썬에서 email 패키지 모듈을 사용 시 아래 오류가 발생할 때가 있다 # email.py from email import encoders from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.base import MIMEBase Original exception was: Traceback (most recent call last): File "email.py", line 2, in from email.mime.text import MIMEText File "/mnt/c/Users/chargingport/Desktop/temp/email.py", line 2, in from e..

import pickle dict = {'A': 1, 'B': 2, 'C': 3} # dictionary를 dictionary.pkl에 저장 with open("dictionary.pkl", "wb") as output_file: pickle.dump(dict, output_file) # dictionary.pkl을 dictionary로 저장 with open("dictionary.pkl", "rb") as input_file: newDict = pickle.load(input_file) print(newDict) $ python3 main.py {'A': 1, 'B': 2, 'C': 3}