Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cannot run browser on python 3.5.3 -- update docs #83

Open
keylime-unicorn opened this issue Oct 6, 2019 · 1 comment
Open

cannot run browser on python 3.5.3 -- update docs #83

keylime-unicorn opened this issue Oct 6, 2019 · 1 comment

Comments

@keylime-unicorn
Copy link
Contributor

Issue and Steps to Reproduce

Trying to run ./TerminusBrowser.py with python 3.5.3 gives the following error message:

$ ./TerminusBrowser.py Traceback (most recent call last):  File "./TerminusBrowser.py", line 14, in <module>    from Views.viewClass import View  File "src/Views/viewClass.py", line 4, in <module>    from Frames.defaultFrame import DefaultFrame  File "src/Frames/defaultFrame.py", line 9    self.footerStringRight = f''

Version

Python 3.5.3

@anselmos
Copy link

The issue @camicarballo found states that source-code of TerminusBrowser is using f-strings that are introduced at python 3.6.

I've gone a step forward and created dockerfile that makes it easier to check this issue:

FROM python:3.5.3

RUN git clone https://github.com/wtheisen/TerminusBrowser.git
RUN cd TerminusBrowser && pip3 install -r requirements.txt
RUN cd TerminusBrowser && ./TerminusBrowser.py

Dockerfile.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants