안드로이드 그래들 변경, Upgrade Gradle wrapper to 2.6 version and re-import the project, Android Upgrade Gradle Version
깃허브에서 받은 프로젝트를 돌려볼라고 했는데,
그래들 2.6은 삭제되었다고 에러가 발생했습니다.
해결하려면 그래들을 최신 버전으로 변경해주면 됩니다. (오래된 프로젝트 소스라면 이부분 말고도 더 많이 변경해야할 수 있습니다...)
Support for builds using Gradle versions older than 2.6 was removed in tooling API version 5.0. You are currently using Gradle version 2.2.1. You should upgrade your Gradle build to use Gradle 2.6 or later.
Possible solution:
- Upgrade Gradle wrapper to 2.6 version and re-import the project
1. 프로젝트 > gradle > wrapper > gradle-wrapper.properties 파일 열기
커맨드나 터미널을 이용하면 컴퓨터를 원하는 시간에 종료할 수 있습니다. 당장도 되고,,, 스케줄을 걸어서 새벽에 자동으로 꺼지게 할수도 있습니다.
맥 예약종료 파라미터 설명
# 종료
-h, -H, -P
# 재가동, 리부팅
-r
# 잠자기, 슬립
-s
# 지금, 현재
now
# 시간 설정
YYMMDDHHMM
# 취소
-c
맥 예약종료 명령어
# 잠자기
sudo shutdown -s now
# 시스템 재가동
sudo shutdown -r now
# 시스템 종료
sudo shutdown -h now
# 1시간(60분) 후에 시스템 종료
sudo shutdown -h +60
# 2020년 9월 21일 19시 36분에 재가동
sudo shutdown -r 2009211936
# 저녁 9시 21분에 잠자기
sudo shutdown -s 21:21
# 예약 취소
sudo shutdown -c
+
윈도우 예약종료 파라미터 설명
# 시간 설정
-t X
# 강제 여부
-f
# 종료
-s
# 재가동, 리부팅
-r
# 이전 예약 취소
-a
윈도우 예약종료 명령어
# 1시간(3600초) 후에 강제로 종료
shutdown -f -s -t 3600
# 30분(1800초) 후에 강제 재부팅
shutdown -f -r -t 1800
kaudo@MacBookPro ~ % sudo pip3 install selenium
WARNING: The directory '/Users/kaudo/Library/Caches/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting selenium
Downloading selenium-3.141.0-py2.py3-none-any.whl (904 kB)
|████████████████████████████████| 904 kB 550 kB/s
Requirement already satisfied: urllib3 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from selenium) (1.25.10)
Installing collected packages: selenium
Successfully installed selenium-3.141.0
kaudo@MacBookPro ~ %
다른 블로그를 보고(특히 윈도우예제) pip로 인스톨하시는 분들이 있는데,
맥은 파이썬2버전이 원래 깔려있어서 pip3로 설치해야 합니다.
pip로 설치하면 제대로 작동하지 않을 수 있습니다.
파이썬2 셀레니엄 삭제
sudo pip uninstall selenium
파이썬3 셀레니엄 삭제
sudo pip3 uninstall selenium
kaudo@MacBookPro ~ % sudo pip uninstall selenium
WARNING: The directory '/Users/kaudo/Library/Caches/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Found existing installation: selenium 3.141.0
Uninstalling selenium-3.141.0:
Would remove:
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium-3.141.0.dist-info/*
/Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages/selenium/*
Proceed (y/n)? y
Successfully uninstalled selenium-3.141.0
kaudo@MacBookPro ~ %
[MAC/PYTHON] 맥북에 파이썬 PIP 설치하기, command not found: pip
파이썬 설치하면 PIP를 쓸수있다길래 해봤는데 안되네요.
윈도우는 잘 모르겠지만 맥은 파이썬을 설치한 후에 PIP는 별도로 설치해야하나봅니다.
터미널에서 실행하면 다음과 같이 pip따위는 없다는 오류가 발생합니다.
kaudo@MacBookPro ~ % pip
zsh: command not found: pip
1. curl로 파이썬 파일을 하나 다운받습니다. curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
kaudo@MacBookPro ~ % curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1840k 100 1840k 0 0 2115k 0 --:--:-- --:--:-- --:--:-- 2113k
2. 이전에 설치해놓은파이썬3로 다운받은 파이썬 파일을 실행합니다. python3 get-pip.py
kaudo@MacBookPro ~ % pip
Usage:
pip <command> [options]
Commands:
install Install packages.
download Download packages.
uninstall Uninstall packages.
freeze Output installed packages in requirements format.
list List installed packages.
show Show information about installed packages.
check Verify installed packages have compatible dependencies.
config Manage local and global configuration.
search Search PyPI for packages.
cache Inspect and manage pip's wheel cache.
wheel Build wheels from your requirements.
hash Compute hashes of package archives.
completion A helper command used for command completion.
debug Show information useful for debugging.
help Show help for commands.
General Options:
-h, --help Show help.
--isolated Run pip in an isolated mode, ignoring environment variables and user configuration.
-v, --verbose Give more output. Option is additive, and can be used up to 3 times.
-V, --version Show version and exit.
-q, --quiet Give less output. Option is additive, and can be used up to 3 times (corresponding to
WARNING, ERROR, and CRITICAL logging levels).
--log <path> Path to a verbose appending log.
--no-input Disable prompting for input.
--proxy <proxy> Specify a proxy in the form [user:passwd@]proxy.server:port.
--retries <retries> Maximum number of retries each connection should attempt (default 5 times).
--timeout <sec> Set the socket timeout (default 15 seconds).
--exists-action <action> Default action when a path already exists: (s)witch, (i)gnore, (w)ipe, (b)ackup,
(a)bort.
--trusted-host <hostname> Mark this host or host:port pair as trusted, even though it does not have valid or any
HTTPS.
--cert <path> Path to alternate CA bundle.
--client-cert <path> Path to SSL client certificate, a single file containing the private key and the
certificate in PEM format.
--cache-dir <dir> Store the cache data in <dir>.
--no-cache-dir Disable the cache.
--disable-pip-version-check
Don't periodically check PyPI to determine whether a new version of pip is available for
download. Implied with --no-index.
--no-color Suppress colored output
--no-python-version-warning
Silence deprecation warnings for upcoming unsupported Pythons.
--use-feature <feature> Enable new functionality, that may be backward incompatible.
--use-deprecated <feature> Enable deprecated functionality, that will be removed in the future.
npm-cli.js ELIFECYCLE, 'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다.
vue.js프로젝트를 개발중인데,
맥에서는 잘되는게 윈도우에서는 안되는것입니다.
제 프로젝트는 npm run serve하면 구동되게 되어있는데,
윈도우에서 실행하면 에러가 발생하면서 구동이 안되고 있습니다.
예전에 node_modules디렉토리도 함께 깃허브에 공유했었는데,
그 파일들이 복사되서 안되는것 같습니다.
그래서 npm을 재설정 해서 오류를 해결했습니다.
서버구동시 오류발생
...
17 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "run" "serve"
18 verbose node v12.18.3
19 verbose npm v6.14.6
20 error code ELIFECYCLE
21 error errno 1
22 error vue.kaudo.com@0.1.0 serve: `vue-cli-service serve`
22 error Exit status 1
23 error Failed at the vue.kaudo.com@0.1.0 serve script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]
...
'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
배치 파일이 아닙니다.
카뱅에서 이벤트가 떳길래 슬쩍 봣는데 눈을 의심할만한, 9만원!?!? 냉큼 정독해봣는데, 정말 9만원 준다고 써잇네요. 4개 카드사에서 하고 있습니다.
국민카드, 삼성카드, 신한카드, 시티카드
해당 카드사에서 이미 사용중인 고객은 이벤트대상이 아닙니다. 저는 국민카드 이용중이고 시티카드는 쓰다가 해지해서 삼성카드랑 신한카드를 신청했습니다.
신청하고 이틀안에 도착. 뭐살지 고민중입니다.
■ 기간 : 2020.08.01~08.31 ■ 대상 : 20년 2월 ~ 7월 기간동안 신한 신용카드 이용 실적이 없는 고객 ■ 내용 : ‘카카오뱅크 신한카드’로 8월 첫 이용 후, 9월 말일까지 누적 10만원 이상 이용 시 9만원 캐시백 제공 ■ 지급방법 : 10월 말(10월 26일 이후) 카드 결제계좌로 지급
Issue with your app Your app contains content that doesn't comply with the Deceptive Ads policy.
For example, we don’t allow: Ads that aren’t clearly labeled Issue details We found an issue in the following area(s): In-app experience: Please see attached screenshot 461.png Reasons of violation About the Deceptive Ads policy We don’t allow apps that contain deceptive or disruptive ads.
Publishing Status App status: Rejected Your app has been rejected and wasn't published due to this policy issue.
If you submitted an update, the previous version of your app is still available on Google Play.
앱 문제 앱에 사기성 광고 정책을 준수하지 않는 콘텐츠가 포함되어 있습니다. 예를 들어 다음은 허용되지 않습니다. 라벨이 명확하지 않은 광고 문제 세부 정보
다음 영역에서 문제를 발견했습니다. 인앱 경험 : 첨부 된 스크린 샷 461.png 참조 위반 이유 사기성 광고 정책 정보 기만적이거나 파괴적인 광고가 포함 된 앱은 허용되지 않습니다. 게시 상태 앱 상태 : 거부 됨 이 정책 문제로 인해 앱이 거부되었으며 게시되지 않았습니다. 업데이트를 제출 한 경우 Google Play에서 이전 버전의 앱을 계속 사용할 수 있습니다.