won't run #206
Replies: 4 comments 2 replies
-
All you have to do is download the Python package requirements for the script. Steps to do so can be found here: https://github.com/jdholtz/auto-southwest-check-in#installation |
Beta Was this translation helpful? Give feedback.
-
I went through all the requirements.txt and manually pip installed each of them to make sure they all there. Still get same error about missing module. what else should i look for? |
Beta Was this translation helpful? Give feedback.
-
Hey Joey,
First of all thank you for reaching out to me. I know these things can be
both rewarding and overwhelming. Kudos to you.
I am actually at airport flying southwest, which I do often. Not sure yet
but think my remote access is not working so won't be able to get to it
until I return on the 5th of February.
Being newbie at Linux I not sure what "pip freeze" even does but will run
it when I can.
Here's what I do know for now:
Platform is Raspberry Pi 400
OS, I believe, is either Rasbian or possible Kali as that is two OS's I
often tinker with.
Memory 4gb
I believe it is Python 3.9.9
The requirements.txt file has not been altered.
I do have an extra Pi 400 with me so might be able to load it on that one
to see what happens.
Thoughts?
Thank you again.
Terry
…On Thu, Jan 25, 2024, 12:14 AM Joey Holtzman ***@***.***> wrote:
Can you paste the output of pip freeze?
—
Reply to this email directly, view it on GitHub
<#206 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOLUMWWE5AFRF32ZZNFKWCLYQHS2LAVCNFSM6AAAAABCH542JSVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DENBQHAYTE>
.
You are receiving this because you authored the thread.Message ID:
<jdholtz/auto-southwest-check-in/repo-discussions/206/comments/8240812@
github.com>
|
Beta Was this translation helpful? Give feedback.
-
I had an issue recently where I couldn't pip install this module on a pi for a project I was working on and I had to do a global install for it to work |
Beta Was this translation helpful? Give feedback.
-
when trying to run the checkin version with " python3 southwest.py CONFIRM# FirstName LastName --verbose" I get 👍 024-01-23 20:17:51 DEBUG MainProcess[log:23]: Initialized the application
2024-01-23 20:17:51 DEBUG MainProcess[main:112]: Auto-Southwest Check-In v7.1
2024-01-23 20:17:51 DEBUG MainProcess[main:113]: Called with 3 arguments
2024-01-23 20:17:51 DEBUG MainProcess[config:107]: Initializing configuration file
2024-01-23 20:17:51 DEBUG MainProcess[config:135]: Reading the configuration file
2024-01-23 20:17:51 DEBUG MainProcess[config:139]: No configuration file found. Using defaults
2024-01-23 20:17:51 DEBUG MainProcess[config:125]: Creating configurations for 1 reservations
2024-01-23 20:17:51 DEBUG MainProcess[main:137]: Reservation added through CLI arguments
2024-01-23 20:17:51 DEBUG MainProcess[main:143]: Monitoring 0 accounts and 1 reservations
Traceback (most recent call last):
File "southwest.py", line 10, in
main(arguments)
File "/home/pi/auto-southwest-check-in/lib/main.py", line 165, in main
set_up_check_in(arguments)
File "/home/pi/auto-southwest-check-in/lib/main.py", line 146, in set_up_check_in
set_up_accounts(config, lock)
File "/home/pi/auto-southwest-check-in/lib/main.py", line 91, in set_up_accounts
from .reservation_monitor import AccountMonitor
File "/home/pi/auto-southwest-check-in/lib/reservation_monitor.py", line 7, in
from .checkin_scheduler import CheckInScheduler
File "/home/pi/auto-southwest-check-in/lib/checkin_scheduler.py", line 5, in
from .checkin_handler import CheckInHandler
File "/home/pi/auto-southwest-check-in/lib/checkin_handler.py", line 10, in
from .flight import Flight
File "/home/pi/auto-southwest-check-in/lib/flight.py", line 8, in
import pytz
ModuleNotFoundError: No module named 'pytz'
**TO me this looks like it looking for a module named "pytz" and not finding. What going on? This is a raspberry pi 4 unit running Raspian with a gui desktop
Beta Was this translation helpful? Give feedback.
All reactions