google colab install python package
!pip install scipy
google colab install python package
!pip install scipy
how to import custom libraries in colab
#NOTE:- FILE NAMES ARE ALWAYS CASE SENSITIVE
##In colab cell,insert the following code..
from google.colab import files
uploaded = files.upload()
for file in uploaded:
print("file name : {} , length: {}".format(file,len(file)))
##after you run the cell simply select the file you want to upload
#after you have selected the correct file you will see the following:
'''
chosen_file_name.py(text/x-python) - 1842 bytes, last modified: 09/06/2020 - 100% done
Saving chosen_file_name.py to chosen_file_name.py
file name : chosen_file_name.py , length:(the length of file)
'''
#Now simply write in the cell
import chosen_file_name
#You are now done :)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us