I mainly use Google Colab, but Google Colab had a payment issue, so yesterday I tried to run the 100% same code in Jupyter Notebook.
My code is :
!pip install --upgrade mxnet
!pip install --upgrade gluoncv
!pip uninstall -y torch torchvision torchaudio torchtext
And when I tried install wget, just like this,
!wget https://www.python.org/ftp/python/3.8.5/Python-3.8.5.tgz
!tar -xvfz Python-3.8.5.tgz
!Python-3.8.5/configure
!make
!sudo make install
this error popped up.
/bin/bash: wget: command not found tar: Error opening archive: Failed to open 'z' /bin/bash: Python-3.8.5/configure: No such file or directory xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun Password:
I couldn’t understand why it doesn’t work.
How can I fix this error? If anyone knows please help.