일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- analyzer test
- License
- license delete
- 파이썬
- aggregation
- aggs
- zip 암호화
- 900gle
- flask
- Kafka
- Mac
- Elasticsearch
- query
- licence delete curl
- Test
- plugin
- high level client
- matplotlib
- Python
- ELASTIC
- MySQL
- zip 파일 암호화
- Java
- token filter test
- TensorFlow
- API
- springboot
- sort
- docker
- 차트
Archives
- Today
- Total
개발잡부
[mac] 로컬에서 conda 가상환경 실행후 python 파일 실행 본문
반응형
우선 결론부터
#!/bin/bash
# Conda 환경 이름을 설정합니다.
CONDA_ENV_NAME="doo"
# Conda를 실행하여 환경을 활성화합니다.
source /Users/doo/opt/anaconda3/bin/activate $CONDA_ENV_NAME
cd /Users/doo/doo_py/homeplus/data
python easy-pickup.py
conda deactivate
간단한 쉘 스크립트
crontab 에 등록하려고 했는데 라이브러리 중에 LaunchDeamons 에 등록해서 사용
LaunchDaemons 등록
이동 cd /Library/LaunchDaemons
LaunchDaemons 에 파일 생성이지만 권한이 귀찮으니 cp -af 로 이미 있는 파일 복사 sudo vi com.search.indexer.plist
금요일 17시 실행
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.search.indexer</string>
<key>ProgramArguments</key>
<array>
<string>/Users/doo/shell/prd_index_copy.sh</string>
</array>
<key>StandardOutPath</key>
<string>/Users/doo/shell/log/logfile.log</string>
<key>StandardErrorPath</key>
<string>/Users/doo/shell/log/errorfile.log</string>
<key>StartCalendarInterval</key>
<dict>
<key>Weekday</key>
<integer>5</integer>
<key>Hour</key>
<integer>17</integer>
<key>Minute</key>
<integer>0</integer>
</dict>
</dict>
</plist>
권한 대개 root:wheel이 적절한 소유권
sudo chown root:wheel /Library/LaunchDaemons/com.example.myscript.plist
로드 및 실행: 설정된 PLIST 파일을 로드하여 Launchd가 해당 스크립트를 실행할 수 있도록 합니다. 터미널에서 다음과 같이 입력합니다
sudo launchctl load /Library/LaunchDaemons/com.search.indexer.plist
반응형
'etc.' 카테고리의 다른 글
sourcetree 에서 커밋 되돌리기 (revert) (0) | 2024.04.03 |
---|---|
[mac] zip 파일에 암호 걸기 (0) | 2024.01.22 |
Unsupported class file major version 61 (0) | 2023.08.06 |
[jenkins] jenkins batch (1) | 2023.04.21 |
[ChatGPT] 프로그래밍 언어중 유망한 언어는? (0) | 2023.03.26 |
Comments