Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
/tmp/python-build.20210510090416.57400 ~
++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:331): http(): local method=get
++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:332): http(): '[' -n https://www.python.org/ftp/python/3.7.9/Python-3.7.9.tar.xz ']'
++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:333): http(): shift 1
+++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:335): http(): detect_http_client
+++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:342): detect_http_client(): local client
+++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:343): detect_http_client(): for client in aria2c curl wget
+++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/plugins/python-build/bin/python-build:344): detect_http_client(): type aria2c
+++(/home/linuxbrew/.linuxbrew/Cellar/pyenv/1.2.27/p
PYENV_DEBUG=1 pyenv install 3.7.9
+ [pyenv:22] enable -f /home/linuxbrew/.linuxbrew/bin/../libexec/pyenv-realpath.dylib realpath
+ [pyenv:29] '[' -z '' ']'
++ [pyenv:31] type -p greadlink readlink
++ [pyenv:31] head -1
+ [pyenv:31] READLINK=/usr/bin/readlink
+ [pyenv:32] '[' -n /usr/bin/readlink ']'
+ [pyenv:57] '[' -z /home/cqin/.pyenv ']'
+ [pyenv:60] PYENV_ROOT=/home/cqin/.pyenv
+ [pyenv:62] export PYENV_ROOT
@ohlookemus
ohlookemus / docker-compose.yml
Created January 29, 2018 18:26
Sample Docker Compose Traefik Config
version: '3'
services:
api:
container_name: api
restart: always
image: registry.example.com/example/example-api:prd
build: .
expose:
- "8000"
env_file: .env
@ohlookemus
ohlookemus / .eslintrc.json
Created March 22, 2016 19:29
React eslint
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": ["react"],
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaVersion": 6,
@ohlookemus
ohlookemus / flake8.xml
Last active December 24, 2015 22:39 — forked from stantonk/flake8.xml
Flake8 For PyCharm 3.0
<?xml version="1.0" encoding="UTF-8"?>
<toolSet name="Flake8">
<tool name="Flake8 File" showInMainMenu="true" showInEditor="true" showInProject="true" showInSearchPopup="false" disabled="false" useConsole="true" showConsoleOnStdOut="false" showConsoleOnStdErr="false" synchronizeAfterRun="true">
<exec>
<option name="COMMAND" value="/usr/local/bin/flake8/flake8" />
<option name="PARAMETERS" value="--max-line-length=79 --max-complexity 12 --ignore=E301,E302,E261,E262,W404 $FileDir$/$FileName$" />
<option name="WORKING_DIRECTORY" value="$FileDir$" />
</exec>
<filter>
<option name="NAME" value="Flake8 Output Filter" />