Chaz Schlarp

Results 10 comments of Chaz Schlarp

Thanks for the heads up, I'll look into it when I get a chance.

I merged your pull request in 41d1e6f6. That should work for now, at least until the code can be ported to the new backend.

Sounds like a newline problem, you might need to run dos2unix on the file.

Oh, you're probably using Python 2 (default "python" on Ubuntu). This uses Python 3, so it's dying on the metaclass part.

From the readme: You can use `pip install -r requirements.txt` to install these packages. Windows users will need to get an [OpenSSL binary](https://www.openssl.org/related/binaries.html). Linux users will need the relevant packages...

I don't know if there is a package for it. You're probably going to have to install the dependencies (from here https://cryptography.io/en/latest/installation/#building-cryptography-on-linux ) and then build and install it with...

Issue is in the last line before the clean up: error: could not create '/usr/local/lib/python2.7/dist-packages/cryptography': Permission denied Two things: 1. You're running pip for Python 2.7, you need the `python3-pip`...

Unfortunately that message doesn't have any real meaning to it. I'd need further logs to know what's going wrong.

Looks like the cryptography user guide tells you to install `python-dev`, but the package you need in this instance is actually `python3-dev`. Just to be sure, I fired up an...

It's a fair amount of work to get a Python app like this bundled into a portable form, and the resulting builds tend to be fairly brittle in my experience....