I am new to VS Code, so I appreciate your help and guidance. Here's the issue that I have encountered for days:
import numpy as np # linear algebra
import pandas as pd # data processing
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn import preprocessing, model_selection, metrics
from sklearn.preprocessing import MinMaxScaler
from keras.preprocessing.sequence import TimeseriesGenerator #Tensorflow has to be installed for this module
from keras.models import Sequential
from keras.layers import Dense
from keras.layers import LSTM
Output:
ValueError Traceback (most recent call last)
File c:\Users\dbansal\AppData\Local\Programs\Python\Python310\lib\importlib\_common.py:89, in _tempfile(reader, suffix)
88 try:
---> 89 os.write(fd, reader())
90 os.close(fd)
File c:\Users\dbansal\AppData\Local\Programs\Python\Python310\lib\importlib\abc.py:371, in Traversable.read_bytes(self)
368 """
369 Read contents of self as bytes
370 """
--> 371 with self.open('rb') as strm:
372 return strm.read()
File c:\Users\dbansal\AppData\Local\Programs\Python\Python310\lib\importlib\_adapters.py:54, in DegenerateFiles.Path.open(self, mode, *args, **kwargs)
53 def open(self, mode='rb', *args, **kwargs):
---> 54 raise ValueError()
ValueError:
During handling of the above exception, another exception occurred:
PermissionError Traceback (most recent call last)
c:\Bansal Data\Drishti Data\Self\iCode\Projects\AI project\EDA.ipynb Cell 1 in ()
5 from sklearn import preprocessing, model_selection, metrics
...
---> 95 os.remove(raw_path)
96 except FileNotFoundError:
97 pass
PermissionError: [WinError 32] The process cannot access the file because it is being used by another process: 'C:\\Users\\...myname...\\AppData\\Local\\Temp\\tmpo1nk6sl3'
Output is truncated. View as a scrollable element or open in a text editor. Adjust cell output settings...
I don't know what to make sense of this output or error. I have tried looking up other solutions but still not getting it.
This error happened so many times in a global and virtual environments in VS Code. I know a good amount of Python, but not the path related issue or anything behind that. I hope that I learn from you and I get better at resolving the issues. Thank you!