'Process data from googledrive with a local environment
I am tryng to process some data that I have in google drive, my scrip run well when i am in a hosted execution environment but it is too slow. So I tried to use a local execution environmente but i cannot acess to google drive because the code to do that requires a module named 'termios' and it is only avaible on Linux

Does anybody knows how can I process the data in my google drive using a local environment?
I tried to install termios with conda and pip but there are no files for that module.
Solution 1:[1]
Since you run google colab in the local environment, you will be unable to access your data from google drive. You have two options now:
- Download your data to your PC and import it.
- Download Google Drive software and sync. it to your local machine, where everything in your drive will be available locally. Then you can import your data.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mohana |
