https://github.com/soreana/sample-rsa-python
https://github.com/soreana/sample-rsa-python
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/soreana/sample-rsa-python
- Owner: soreana
- Created: 2018-11-25T20:38:20.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-25T20:48:34.000Z (almost 7 years ago)
- Last Synced: 2025-01-25T23:16:32.800Z (8 months ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Config dependencies.
### Step one: install pip3 [[1]](https://www.liquidweb.com/kb/how-to-install-pip-on-ubuntu-16-04-lts/)
* Execute `curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"` to get pip installation script.
* Execute `sudo -H python3 get-pip.py` to install pip3 (cryptography needs python3 as a result we should install pip3)### Step two: install some dependencies:
* Run `sudo apt-get install python3.6-dev libmysqlclient-dev`### Step tree: cryptography installation
* Install cryptography library for current user by `pip3 install cryptography --user`## How to run each file