I am writing an installer for the larger program that I am writing, and I use CxFreeze to convert it to an executable file, however, when I run the .exe file, it crashes using the "import pip" line and raises (as shown below), so basically my question is: is it possible to use CxFreeze for an application with imported pip?
Edit: Here are all the files I use:
setup.py (V1):
from cx_Freeze import *
import os, pip
setup(name=("ARTIST"),
version = "1",
description = "ARTIST installation file",
executables = [Executable("Install ARTIST.py"), Executable("C:\\Python34\\Lib\\site-packages\pip\\__init__.py")],
)
This causes an error:

setup.py (V2):
from cx_Freeze import *
import os, pip
setup(name=("ARTIST"),
version = "1",
description = "ARTIST installation file",
executables = [Executable("Install ARTIST.py"],
options = {"build_exe": {"packages":[pip]}}
)
This causes an error in the file setup.bat:

Edit: If someone wants to see the site where I am posting a great program, here is the link:
alaricwhitehead.wix.com/artist
Edit2: this is the error I get when I use py2exe:

Edit3:
:
https://www.dropbox.com/s/uu46iynm8fr8agu/Install%20ARTIST.txt?raw=1
: , .