| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- Spring Security
- 라즈베리파이
- between 날짜
- python 개발환경
- log4j2
- Java
- catalina log
- git
- Linux
- mybatis
- datasource
- ORACLE CLOUD
- 배열스트링
- ubuntu
- hikaricp
- springboot
- between date
- oracle between
- STS
- oracle
- hikari
- MySQL
- bitbucket
- Gradle
- Spring
- template
- intellij
- log4j profile
- github
- Spring Boot
Archives
- Today
- Total
반응형
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 31 |
Tags
- Spring Security
- 라즈베리파이
- between 날짜
- python 개발환경
- log4j2
- Java
- catalina log
- git
- Linux
- mybatis
- datasource
- ORACLE CLOUD
- 배열스트링
- ubuntu
- hikaricp
- springboot
- between date
- oracle between
- STS
- oracle
- hikari
- MySQL
- bitbucket
- Gradle
- Spring
- template
- intellij
- log4j profile
- github
- Spring Boot
Archives
- Today
- Total
파워노트
Python 개발 환경 구성 본문
반응형
ubuntu 환경에서 정리
설치
- sudo apt update
- sudo apt install python3
- sudo apt install python3-venv
- sudo apt install python3-pip
가상환경 사용
- mkdir hello
- cd hello
- python3 -m venv .myenv
- source ./.myenv/bin/activate [가상환경 활성화 ]
Windows에서는 ./.myenv/Scripts/activate

- deactivate [가상환경 비활성화 ]

가상환경 진행 ( 자주 사용하는 모듈 설치 )
- sudo pip install bs4
- sudo pip install requests
- sudo pip install selenium
개발 Dependency 저장
- pip freeze > pip-requirements.txt
- vi pip-requirements.txt

저장된 Dependency 설치
- pip install pip-requirements.txt
반응형
Comments