Password Manger

Password Manger

Last login: Tue Apr 7 17:23:15 on ttys000 garymakinson@Mac-mini ~ % pip3 isntall cryptography ERROR: unknown command "isntall" - maybe you meant "install" garymakinson@Mac-mini ~ % pip3 install cryptography error: externally-managed-environment

× This environment is externally managed ╰─> To install Python packages system-wide, try brew install xyz, where xyz is the package you are trying to install.

If you wish to install a Python library that isn't in Homebrew,
use a virtual environment:

python3 -m venv path/to/venv
source path/to/venv/bin/activate
python3 -m pip install xyz

If you wish to install a Python application that isn't in Homebrew,
it may be easiest to use 'pipx install xyz', which will manage a
virtual environment for you. You can install pipx with

brew install pipx

You may restore the old behavior of pip by passing
the '--break-system-packages' flag to pip, or by adding
'break-system-packages = true' to your pip.conf file. The latter
will permanently disable this error.

If you disable this error, we STRONGLY recommend that you additionally
pass the '--user' flag to pip, or set 'user = true' in your pip.conf
file. Failure to do this can result in a broken Homebrew installation.

Read more about this behavior here: <https://peps.python.org/pep-0668/>

note: If you believe this is a mistake, please contact your Python installation or OS distribution provider. You can override this, at the risk of breaking your Python installation or OS, by passing --break-system-packages. hint: See PEP 668 for the detailed specification. garymakinson@Mac-mini ~ % pip3 install cryptography --break-system-packages Collecting cryptography Downloading cryptography-46.0.6-cp311-abi3-macosx_10_9_universal2.whl.metadata (5.7 kB) Collecting cffi>=2.0.0 (from cryptography) Downloading cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl.metadata (2.6 kB) Collecting pycparser (from cffi>=2.0.0->cryptography) Downloading pycparser-3.0-py3-none-any.whl.metadata (8.2 kB) Downloading cryptography-46.0.6-cp311-abi3-macosx_10_9_universal2.whl (7.2 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.2/7.2 MB 32.3 MB/s 0:00:00 Downloading cffi-2.0.0-cp314-cp314-macosx_11_0_arm64.whl (181 kB) Downloading pycparser-3.0-py3-none-any.whl (48 kB) Installing collected packages: pycparser, cffi, cryptography Successfully installed cffi-2.0.0 cryptography-46.0.6 pycparser-3.0 garymakinson@Mac-mini ~ % cd desktop garymakinson@Mac-mini desktop % lls zsh: command not found: lls garymakinson@Mac-mini desktop % ls C6E2B592-6158-4615-9048-5BB06B12165A.PNG ChatGPT.app Grok.app Heart.mp3 mac_system_report.html MGK + Juice WRLD - Same Pain (Emo Rap - Sad Trap) - YouTube.webloc Organized Pass.py scne.py Screen Recording 2026-04-07 at 12.15.39 PM.mov Screenshot 2026-04-07 at 12.15.15 PM.png Screenshot 2026-04-07 at 12.15.28 PM.png Screenshot 2026-04-07 at 12.54.59 PM.png Screenshot 2026-04-07 at 12.57.45 PM (2).png Screenshot 2026-04-07 at 12.57.45 PM.png Screenshot 2026-04-07 at 12.57.50 PM.png Similkameen Ave 9.m4a garymakinson@Mac-mini desktop % python3 pass.py generate 🔐 Enter your master password to unlock the vault: ❌ Error: Fernet key must be 32 url-safe base64-encoded bytes. garymakinson@Mac-mini desktop % python3 pass.py generate 💡 Easy usage: python3 pass.py Example: python3 pass.py pixelnik TheAppGuyDev@proton.me python3 pass.py netflix myemail@gmail.com --length 24 --show garymakinson@Mac-mini desktop % python3 pass.py generate pass.py netflix usage: pass.py [-h] [--length LENGTH] [--show] [service] [account] pass.py: error: unrecognized arguments: netflix garymakinson@Mac-mini desktop % python3 pass.py generate pass.py netflix usage: pass.py [-h] [--length LENGTH] [--show] [service] [account] pass.py: error: unrecognized arguments: netflix garymakinson@Mac-mini desktop % garymakinson@Mac-mini desktop % python3 pass.py 💡 Usage: python3 pass.py

Examples: python3 pass.py pixelnik TheAppGuyDev@proton.me python3 pass.py netflix myemail@gmail.com --show garymakinson@Mac-mini desktop %

Back to Journal Edit