cloudmatrix / esky

an auto-update framework for frozen python apps
BSD 3-Clause "New" or "Revised" License
362 stars 74 forks source link

The process cannot access the file because it is being used by another process #57

Closed jokober closed 8 years ago

jokober commented 10 years ago

Hi guys, I get a error message on Windows and can't figure out how to solve this: screen shot 2014-01-25 at 21 51 36

I already tried to restart the computer but nothing changed. I also get the same error with cxfreeze ...

My setup.py code: example = Executable("gui_starter.py", gui_only=False, )

setup(
  data_files=data_files,
  name = "Voc2brain",
  version = "4.4.%d" % subversion,
  scripts = [example],
  options = {"bdist_esky":{
             #  forcibly include some other modules
             "includes": ["sip", "lxml"],
             #  forcibly exclude some other modules
             "excludes": ["pydoc"],
             #  force esky to freeze the app using py2exe
             "freezer_module": "py2exe",
             #  tweak the options used by py2exe
             "freezer_options": {"bundle_files":3,"compressed":True},
          }}
)
sibblegp commented 10 years ago

I am also having this same problem. Were you ever able to figure out a solution?

jokober commented 10 years ago

No I wasn't able to figure it out ...

2014-04-08 5:15 GMT+02:00 George Sibble notifications@github.com:

I am also having this same problem. Were you ever able to figure out a solution?

Reply to this email directly or view it on GitHubhttps://github.com/cloudmatrix/esky/issues/57#issuecomment-39807894 .

hasefet commented 10 years ago

Likewise having the same problem without relief.

kinnarr commented 9 years ago

I had the same problem. While packing with py2exe directly I found some errors in my script. After fixing that, bdist_esky run without errors.

timeyyy commented 8 years ago

Errors not caused by esky