You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when provide data from list sequence it gives error :
with open(filename, 'w', encoding='latin-1') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/cspade-90432e483f8647d39e749da67ff2aac0.txt'
any suggestion ?
The text was updated successfully, but these errors were encountered:
It's probably because you're using this package in Windows.
To debug, navigate to the location where the package is installed and change filename = '/tmp/cspade-{}.txt'.format(hex)
to filename = r'C:/Temp/cspade-{}.txt'.format(hex)
when provide data from list sequence it gives error :
with open(filename, 'w', encoding='latin-1') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/tmp/cspade-90432e483f8647d39e749da67ff2aac0.txt'
any suggestion ?
The text was updated successfully, but these errors were encountered: