IT/Network & OS

MAC OS 이슈 모음

루벤초이 2022. 10. 30. 18:25

Git error

git permission denied after OSX upgraded to Ventura 13.0

solution: edit ~.ssh/config

Host *
    HostkeyAlgorithms +ssh-rsa
    PubkeyAcceptedAlgorithms +ssh-rsa
    KexAlgorithms +diffie-hellman-group1-sha1,diffie-hellman-group14-sha1

 

PyQt5

 

PyQt5 is required to install ROS2 foxy. --confirm-license option is needed when it stucks on 'Preparing metadata'.

python3 -m pip install --config-settings --confirm-license= --verbose pyqt5

 

Pygraphviz

Once graphviz is installed,

python -m pip install \
    --global-option=build_ext \
    --global-option="-I$(brew --prefix graphviz)/include/" \
    --global-option="-L$(brew --prefix graphviz)/lib/" \
    pygraphviz
728x90
반응형

'IT > Network & OS' 카테고리의 다른 글

[SW Architecture] Tactics apllied to WebRTC  (0) 2023.03.05
[AWS] S3 403 Forbidden  (0) 2022.04.10
[AWS] S3 SDK  (0) 2022.04.09
[AWS] IoT + React App + Amplify  (0) 2022.02.23
[AWS] IoT  (0) 2022.02.21