Проблема с установкой google colab
Пыталась решить простенькую задачу
from google.colab import files
import numpy as np
file = files.upload()
!ls
my_array = np.loadtxt('train_vector.csv', delimiter=',')
type(my_array)
Выдаёт
No module named 'google colab'
Пыталась установить в терминале google colab через
pip3 install google-colab
выдаёт следующие ошибки:
Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools":
error: subprocess-exited-with-error
python setup.ру bdist_wheel did not run successfully
error: Failed building wheel for pandas
error: subprocess-exited-with-error Running setup.ру install for pandas did not run successfully
This error originates from a subprocess, and is likely not a problem with pip Warning: No metadata found in c:\users\amber\appdata\local\programs\python\python310\lib\site-packages
Error: legacy-install-failure
enter image description here
enter image description here
Кто-нибудь знает, как это решить?