I have this code which i need to create it as a python exe file, where in user has to click the workflow done.
My Sample Project
import os import pandas as pd import sys import csv path = os.getcwd() v1 = pd.read_csv(r"path\V1.tsv", delimiter = '\t') v1.to_csv(r"path\v2.csv", index=False) I used Pyinstaller to create a .exe file but it didnt help me achieve what I want. Can some one suggest me?
pathinr"path\V1.tsv"? Does your program run if you start it as a script?