-1

I am just trying to import a .txt file from my D: drive of my windows machine to google colab using genfromtxt() of numpy from python. But I cannot find a way to import. All I get is error "File not found" as the current working directory is point to google drive. Please provide a solution.

Vikram
  • 1
  • 1

1 Answers1

0

You might need to change your path settings. Try:

import sys
sys.path.append(the_desired_file_location)
Kerry Hall
  • 15
  • 4