Questions tagged [pyupdater]

13 questions
16
votes
1 answer

pyinstaller updater with github / bitbucket private repos

I'm attempting to integrate pyinstaller with updating feature for private repo’s. My question, is there a way to integrate pyupdater with free alternatives such as: bitbucket private repos? Pyupdater tends to work for public repo’s but I cannot…
user9155788
5
votes
1 answer

How to use PyUpdater

I Have a main.py file for my Tkinter app. I export it to a standalone.exe with Pyinstaller. I want that when I start the .exe to update the .exe if a new version was deployed in the directory where I export my program. Apparently we can do that with…
Malou
  • 141
  • 8
4
votes
1 answer

How to use PyUpdater with updates from USB flash drive

I am trying to use PyUpdater without an update server, but updates from flash drives instead. Any ideas on how to instantiate the class AppUpdate without the Client.check_update() method?
4
votes
1 answer

How do I create a pyUpdater Keypack

I'm trying to create a pyUpdater keypack while following along with the pyUpdater Demo (http://pyupdater-wx-demo.readthedocs.io/en/latest/overview.html#running-from-source) but I receive this error. Pip Command pyupdater keys -c Result 272 INFO:…
Luc
  • 115
  • 1
  • 13
2
votes
1 answer

Pyupdater Client.refresh() is not working

When I try to create a client from Pyupdater, I get the following error. I also created and imported the keys since the error seems to point that _get_signing_key() is None. Traceback (most recent call last): File "setup.py", line 65, in status…
ewowza18
  • 23
  • 4
1
vote
0 answers

When I am using client.refresh() in pyupdater it's give me error

from pyupdater.client import Client import logging from client_config import ClientConfig #from fileserver import RunFileServer logging.basicConfig(level=logging.DEBUG) APP_NAME = 'updaterapp' APP_VERSION = '1.0.0' import http.client as…
Asad elahi
  • 21
  • 1
1
vote
0 answers

Pyupdater client.update_check(APP_NAME,APP_VERSION) are always return none

from pyupdater.client import Client,AppUpdate, LibUpdate import logging from client_config import ClientConfig logging.basicConfig(level=logging.DEBUG) APP_NAME = 'PyUpdater App' APP_VERSION = '1.1.0' ASSET_NAME = 'PyUpdater App' ASSET_VERSION =…
Asad elahi
  • 21
  • 1
1
vote
1 answer

Clash between Kivy and PyUpdater Logges

I am Using PyUpdater to Auto Update my kivy app. I am stuck at a situation where my app get crashed (after so many warnings in terminal window) when I import pyupdater's Client class (in my app). What I know from different sources that (May be I am…
Ahmad Raza
  • 1,923
  • 2
  • 14
  • 19
1
vote
0 answers

Pyupdater loops when a new version arrived when using nssm

My program consists of the following steps: check for update if an update exists, download it, extract and restart the program run update checks in a new thread every 30s run the main program that prints the word YAY every 5s Here is the code of…
andlvovsky
  • 104
  • 2
  • 5
1
vote
0 answers

Upload file to Amazon storage with PyUpdater

I am uploading a file to Amazon Storage though this does not seem to appear which is quite strange. This is for pyupdater. My only assumption is that for whatever reason it is either not loading the file correctly or not loading anything. …
user8900239
0
votes
0 answers

What might be causing 'type object 'MainFrame' has no attribute 'MainTemp_meter1'' error in my Python GUI program

I'm working on a code to update my temperature sensor together with a timer and translate this into the gauges on my Gui. the problem is somewhere in the updater code since that is the only code that creates error codes to be more precise this error…
0
votes
1 answer

how to fix error during installation of PyUpdater

This is the error caused by trying to install PyUpdater.with the pip install --upgrade PyUpdater command on Windows 10
0
votes
0 answers

pyupdater can't update installed program on MacOs - destination path already exists

I'm trying to update using PyUpdater a Python app which I have build using PyInstaller and installed on a Mac using Packages. The update process fails when pyupdater tries to execute the extract_restart and then _overwrite method from…
user1544500
  • 2,067
  • 5
  • 25
  • 35