Fatal Python error: Py_Initialize: unable to load the file system codec. ImportError: No module named 'encodings'
I am trying to make simple python program that is opening list of webpages for a user to manually download reports from the site. I don't have any previous experience with preparing exe files.. And I'm just in learning process for python coding. All of this is done on Windows 7 x64 This is my python code: #!C:/Python34/python.exe -u from splinter import * import time import os import csv #---------------------------------- raporty = [] with open('../raporty.csv', newline='') as csvfile: contents = csv.reader(csvfile, delimiter=' ', quotechar='|') for row in contents: r = ', '.join(row) r = r