After installing xcode13.3, a prompt keeps popping up asking me to install the command line developer tools, but I have already installed it, and this prompt keeps popping up, what should I do?
prompt keeps popping up asking me to install the command line developer tools
~> xcodebuild -runFirstLaunch
Install Started
1%.........20.........40.........60.........80........Install Succeeded
Worked For me!
this cmd >> xcodebuild -runFirstLaunch worked
Check your /usr/bin folder for your python Installation. If you are using "python3" then you use the "pip3" command for managing packages & installations.
i was setting up my work environment and a cli depended on a python installation related to xcode (aws cli 1). i had to:
- update maco
- install xcode
- get the path at
xcode -p
(let's call it $RESULT` - run ls on
$RESULT/usr/bin
and verify that it didn't contain anypython
then, i saw that there was a symlink ending in python3.9
, i'll call it $SYMLINK. I verified the original resource with realpath $SYMLINK
and, to finish it of:
- I created a symlink to the same folder than python3.9 with the same root, but ending in
python
instead. - proceeded to install my original cli, and voila
thank you, it's work for me